Welcome to the ASP.NET 2.0 Security FAQ page. This page provides an index to common questions and answers. The questions act as another index into the security guidance.阅读全文>
发表于 @ 2006年03月22日 13:33:00|评论(loading...)|编辑
在VS2005中,你会发现DataFormatString不起作用了。阅读全文>
发表于 @ 2006年03月22日 11:36:00|评论(loading...)|编辑
描述如何建立新的 ASP.NET 成员关系、角色管理和个性化服务,从而使用常规的 SQL Server 代替 Microsoft SQL Server Express。
阅读全文>
发表于 @ 2006年03月06日 11:15:00|评论(loading...)|编辑
在2.0中做用户登陆界面Login.aspx时出现了这个错误.
Cannot convert type 'ASP.login_aspx' to 'System.Web.UI.WebControls.Login'(无法将类型'ASP.login_aspx' 转换为'System.Web.UI.WebControls.Login'
研究了一下,这个错误的罪魁祸首是:
中Inherits="Login"这句,在创建页面Login.aspx的时候,vs2005在后台页面Login.aspx.cs也创建了类
public partial class Login : System.Web.UI.Page
而Login类和2.0的'System.Web.UI.WebControls.Login'引发了冲突,所以才有上面的错误.在这里,只需要把Inherits="Login" 和public partial class Login : System.Web.UI.Page 中的Login改为其它,错误就会消失了
阅读全文>
发表于 @ 2006年03月03日 13:13:00|评论(loading...)|编辑
如何解决asp.net2.0中'Procedure or function has too many arguments specified'( 存储过程或函数指定过多参数)的问题阅读全文>
发表于 @ 2006年03月01日 17:06:00|评论(loading...)|编辑