|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp可以轻松地实现对页面内容的动态控制,根据不同的浏览者,显示不同的页面内容。而浏览者一点觉察不出来,就像为他专门制作的页面一样。使用各种各样的组件,asp可以完成无比强大的功能。asp.netasp.net中的身份考证
我用的是基于窗体的考证,这也是最经常使用的,我只写一下择要,源代码太长,但应当不影响了解代码.
web.config的修正:
<authenticationmode="Forms"/>
用户的上岸考证办法,:
这里有两个输出控件的,一个是user_tb,用来输出用户,一个是psw_tb,用来输出暗码
privatevoidButton1_Click(objectsender,System.EventArgse)
{
//用户上岸考证
stringip=System.Web.HttpContext.Current.Request.UserHostAddress;
stringuser_name=user_tb.Text;
stringuser_psw=psw_tb.Text;
user_name=user_name.Replace("<","<").Replace(">",">").Replace("","").Replace("","‘");
user_psw=user_psw.Replace("<","<").Replace(">",">").Replace("","").Replace("","‘");
if(user_name!=""||user_psw!="")
{
SqlConnectionmyconn=newSqlConnection((string)ConfigurationSettings.AppSettings["connstring"]);//毗连数据库
myconn.Open();//翻开
stringvalidate_Sql="select*fromWeb_UserwhereUser_Name="+user_name+"andUser_Psw="+user_psw+"";
SqlCommandvalidate_com=newSqlCommand(validate_Sql,myconn);
SqlDataReadervalidate=validate_com.ExecuteReader();
stringtemp="";
while(validate.Read())
{
Session["user_name"]=user_name;
Session["user_flag"]=validate["User_Flag"].ToString();
temp="yes";
}
validate.Close();
if(temp=="yes")
{
user_tb.Text="";
psw_tb.Text="";
System.Web.Security.FormsAuthentication.RedirectFromLoginPage(user_name,false);
Response.Redirect("manage_index.aspx");
}
else
{
Response.Write("<script>alert(您的用户名或暗码毛病!);</script>");
return;
}
user_tb.Text="";
psw_tb.Text="";
myconn.Close();
}
}
判别用户是不是已上岸:
privatevoidPage_Load(objectsender,System.EventArgse)
{
//在这里判别用户是不是已上岸
if(!System.Web.HttpContext.Current.User.Identity.IsAuthenticated)
{
Response.Write("<script>alert(您没有上岸!);history.back()</script>");
}
stringstrUsername;
strUsername=System.Web.HttpContext.Current.User.Identity.Name+"<br>+System.Web.HttpContext.Current.User.Identity.IsAuthenticated";
lbIUsername.Text=strUsername;
//在此处安排用户代码以初始化页面
}
用户的加入:
privatevoidLinkButton1_Click(objectsender,System.EventArgse)
{//加入
Session["user_name"]=null;
Session["user_flag"]=null;
Session.Clear();
System.Web.Security.FormsAuthentication.SignOut();
Response.Redirect("default.aspx");
}
</p>国内有些大的CRM厂商的ASP就写得不错.无论是概念还是它里面用JAVASCRIPT的能力.并不是说现在的程序员用了ASP.NET来写程序就可以说自己高档了 |
|