验证视图状态 MAC 失败。如果此应用程序由网络场或群集承载,请确保 <machineKey> 配置指定了相同的 validationKey 和验证算法。不能在群集中使用 AutoGenerate当runat="server"的表单通过修改action提交数据到其它页面时,也会引发这个问题。如: document.forms[0].action …
using System.Diagnostics; Process.Start(string.Format(@"D:/en/classroom/classroom/WebUI/{0}",url));
int examid=Convert.ToInt32(e.CommandArgument.ToString());//试卷编号 Random rd = new Random(); string fileName = DateTime.Now.ToString("yyyyMMddhhmm") + rd.Next() + ".doc…
string GetURLContent(string url, string EncodingType) { string PetiResp = ""; Stream mystream; //"http://go.microsoft.com/fwlink/?LinkId=25817" …
.NET导出Excel遇到的80070005错误的解决方法: 检索 COM 类工厂中 CLSID 为 {00024500-0000-0000-C000-000000000046}的组件时失败,原因是出现以下错误: 80070005基本上.net导出excel文件,都需要如此配置一下,不配置有的时候没错,而配置后基本应该不会出错。 具体配置方法如下: 1:在服务器上安装office的Excel软件.…
asp.net 中如何过滤html标签 方法一: using System.Text.RegularExpressions; public string RemoveHtml(string strHtml)//取出html标签 { string strhtml = Regex.Replace(strHtml, "<.+?>", &…
如果测试的url地址是http://www.test.com/testweb/default.aspx, 结果如下: Request.ApplicationPath: /testweb Request.Cu…
protected void Button1_Click(object sender, EventArgs e) { for (int i = 0; i < ListBox1.Items.Count; i++) &n…
protected void Button1_Click(object sender, EventArgs e) { StreamReader sr = null; //声明一个读取流,暂未实例化 …
DateTime time1 =new DateTime(1982,4,24,14,23,06); DateTime time2 =new DateTime(1982,1,21,8,16,32); TimeSpan ts= time2.Subtract(time1); string timespan = "相差:" +ts.Days.ToString()+"天…
DateTime dt = DateTime.Now; dt.AddDays(-1);//-1为昨天 那么后天为 dt.AddDays(2);
注册单击事件源的事件: 第一:在要触发事件的控件(服务器控件) 添加 OnClientClick="return CheckGiftNum(this)" 事件。 第二:在要执行的js函数中 function checkvalue(参数 jsstr) jsstr.i…
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "a", "<script>alert('请选择您要上传的图片!');</script>");
全局方案: 在资源方案视图中选中网站,右键,点击[添加ASP.NET 文件夹]->[App_GlobalResources] 再选中App_GlobalResources文件夹,右键,点击[添加新项],在弹出的对话框中选中“资源文件”,命名为“LocalizedText.resx”,点击[ 添加],如图所示: 双击LocalizedText.resx进行编辑,添加一…
//适用于C#语言 //使用前需导入以下命名空间:using System.Web.Security; //第一个参数为需加密的字符串,第二个参数为加密的格式(只有SHA1和MD5两种,可任选一种) public string EncryptPassword(string PasswordString, string PasswordFormat) &nbs…
在Web.Config的<styletem.web>里面加入以下节点 <httpRuntime maxRequestLength="10240" useFullyQualifiedRedirectUrl="true" executionTimeout="100"/> maxRequestLength=10240…
在web.config里 <configuration> <system.web> <customErrors mode="On" defaultRedirect="GenericErrorPage.htm"> <error statusCode="403" redirect="NoAc…
var ddr= document.getElementById("ctl00_ContentPlaceHolder3_Gw_Send1_DropDownList2"); alert(ddr.options[ddr.selectedIndex].text); var peoples = document.getElementById("ctl00_Conten…
using System.Web.Mail; System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient(); client.Host = "smtp.163.com";//邮件服务器 …