摘要:
private void SendMail() { MailMessage mailMsg = new MailMessage(); mailMsg.To = tbToEmail.Text; mailMsg.From = tbEmail.Text; mailMsg.Subject ... 阅读全文
摘要:
可以绑定一切东西,基本页面都能用绑定变量: 变量名和前面的=号不能有空格,变量必须是全局变量 比如 public string s;绑定提交的数据: 阅读全文
摘要:
private void CreateExcel() { string header = string.Empty; string line = string.Empty; try { dltDataBind(); Response.Clear(); Response.Buffer = true;... 阅读全文