摘要:
网上找到的发送邮件的类,改了一点点,在此谢谢原作者的奉献。1.源码: public class CSendMail { private MailMessage mailMessage; private SmtpClient smtpClient; ... 阅读全文
摘要:
同事的代码,帮忙修改的,为了实现页面跳转回来后,状态的保持,Service 使用了Session。 主要的JS $.ajax({ url: "/ws/StaffInfo.asmx/Note",//路径/方法 type: "POST", contentType: "application/json", data: "{id:'" + id + "',sex:'" + sex + "',dep:'" + dep + "', 阅读全文
摘要:
/// /// 下载附件查看 /// /// /// protected void downButton_Command(object sender, CommandEventArgs e) { //传递过来的参数 string fullName = e.CommandArgument.ToString(); string fileName=System.IO.Path.GetFileName(fullName); ... 阅读全文
摘要:
功能:可以实现导出整个数据表格或整个页面public bool ExportGv(string fileType, string fileName) { bool flag = false; try { //定义文档类型、字符编码 Response.Clear(); Response.Buffer = true; HttpContext.Current.Response.Charset = "GB2312"; HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding(&qu 阅读全文
摘要:
在GridView中隐藏一字段,方便这条记录的处理,同时隐藏一个Button实现点击这条记录时的处理1.绑定 是否批准 待定 同意 不同意 '> 2.处理 实现光棒效果,并注册这条记录点击时的处理 protected void Gv_RowDataBound(object sender, GridViewRowEventArgs e) { Button btn = e.Row.FindControl("hiddenPost") as Button; if (btn != null) { e.Row.Attributes["onclick"] 阅读全文