摘要:
public string GetRelativeLevel() { string[] strArray = HttpContext.Current.Request.Path.Split(new char[]{'/'}); StringBuilder builder = new StringBuilder(30); for(int i=0;i<strArray.Length-3;i+... 阅读全文
摘要:
private void Page_Load(object sender, System.EventArgs e) { this.txtPwd.Attributes.Add("value", txtPwd.Text.Trim()); this.txtRePwd.Attributes.Add("value", txtPwd.Text.Trim()); } 阅读全文