晕,写了两个晚上的,同时也是自己学asp.net一年多以来,第一次有满意的作品!希望再接再厉!
´2004.6.10 【程序编程相关:oracle这样才能删除干净!!】
我有信心做个优秀的人民教师与优秀的.net程序员!:) 【推荐阅读:LSAT(Linux Security 】
´programmer by czclk 【扩展信息:Web网站的设计、管理与维护】 ´自学.net一年,第一个自己写的用户登录控件 ´事件checkedresult,该事件参数e继承自eventargs,含有用户名,密码,登录合法性(布尔值) ´事件enterempty,当用户名.密码文体框为空值时引发 imports system.componentmodel imports system.web.ui imports system.web.ui.webcontrols imports system.data.sqlclient ")> public class login inherits system.web.ui.webcontrols.webcontrol implements ipostbackdatahandler public delegate sub checkedevent(byval sender as object, byval e as loginevent) public event enterempty as eventhandler public event checkedresult as checkedevent private _user as string private _pass as string private _database as string private _datatable as string private _databaseusername as string private _databasepass as string private _server as string private _coluser as string private _colpass as string private _txtuser as string private _txtpass as stringpublic property coluser() as string ´属性--用户名字段
get return _coluser end get set(byval value as string) _coluser = value end set end property public property colpass() as string ´属性--密码字段 get return _colpass end get set(byval value as string) _colpass = value ... 下一页