首页 > 代码库 > .net开发学习笔记

.net开发学习笔记

.net中修改asp文本框控件为密码框:TextMode=“PassWord”;

在文本框中显示浅色占位提示文字:placeholder=“文字”;

c#语句跳转到其他页面句法syntax:response.redirect(“页面路径”);

在Web.config中保存登录账户信息:

<configuration><appSettings><add key =“UserName” value = http://www.mamicode.com/“admin”/>>

 

在登录环节验证逻辑代码:

命名空间:

using System.Configuration;

 

登录按钮click事件:

    string userName = ConfigurationManager.AppSettings[“UserName”];    string pwd = ConfigurationManager.AppSettings[“PassWord”];    if(userName.Text == userName && txtPwd.Text == pwd){        Session[“admin”] = txtName.Text;        Response.Redirect(“member/admin.aspx”);}        

今日单词:

projects [?pr?d?ekt]方案 项目  offset[??fset] 抵消 偏移 group[gru?p] 组合  control[k?n?tr??l] 控制  panel[?pænl] 面板  mode 方式 风格  redirect[?ri?da??rekt] 跳走,重新调配。 sign out 登记离开。configuration[k?n?f?g??re??n] 结构 配置 settings[?set??] 环境 manager[mæn?d??(r)]  经理 管理人 using[ju?s] 功能 使用

 

.net开发学习笔记