摘要: so you use the same familiar .NET Framework and .NET languages, the same .NET Framework and ASP.NET class libraries, and the same development tools.the same .NET Framework and .NET languages,the same .NET Framework and ASP.NET class libraries, and the same development tools. 阅读全文
posted @ 2013-04-21 23:15 daishuguang 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 1 public bool SendMail() 2 { 3 MailMessage myEmail = new MailMessage(); 4 myEmail.From = new MailAddress(fromMail.Text.Trim()); 5 myEmail.To.Add(toMail.Text.Trim()); 6 myEmail.Subject = subject.Text.Trim(); 7 myEmail.IsBodyHtml = f... 阅读全文
posted @ 2013-04-21 19:30 daishuguang 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 怎么解决 阅读全文
posted @ 2013-04-21 19:06 daishuguang 阅读(150) 评论(0) 推荐(0) 编辑
摘要: View Code 1 <script type="text/javascript"> 2 function cleartext() { 3 for (i = 0; i < window.document.forms[0].elements.length; i++) { 4 if (window.document.forms[0].elements[i].type == "text") { 5 window.document.forms[0].elements[i].value =... 阅读全文
posted @ 2013-04-21 12:35 daishuguang 阅读(196) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/Hope94/article/details/4364471 阅读全文
posted @ 2013-04-21 02:32 daishuguang 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 为了清除textarea的值,无法用document.getElementByTagName("textarea").value获取textarea服务器控件的值,不起作用View Code 1 document.getElementsByTagName("textarea").value = "";http://hi.baidu.com/fish1nsky/item/1dec4f49f253cce71281da3a这样就有效了View Code 1 document.getElementById("<%= conta 阅读全文
posted @ 2013-04-21 02:03 daishuguang 阅读(164) 评论(0) 推荐(0) 编辑