• 验证视图状态 MAC 失败。如果此应用程序由网络场或群集承载,请确保 <machineKey> 配置指定了相同的 validationKey 和验证算法。不能在群集中使用 AutoGenerate

    验证视图状态 MAC 失败。如果此应用程序由网络场或群集承载,请确保 &lt;machineKey&gt; 配置指定了相同的 validationKey 和验证算法。不能在群集中使用 AutoGenerate当runat=&quot;server&quot;的表单通过修改action提交数据到其它页面时,也会引发这个问题。如:&nbsp;document.forms[0].action&nbsp;…

    胡同里的砖头2016/1/25【.NET/Web】
  • ASP.NET网页如何打开exe本地程序

    using System.Diagnostics; Process.Start(string.Format(@&quot;D:/en/classroom/classroom/WebUI/{0}&quot;,url));

    胡同里的砖头2015/3/31【.NET/Web】
  • C#导出word

    int examid=Convert.ToInt32(e.CommandArgument.ToString());//试卷编号 Random rd = new Random(); string fileName = DateTime.Now.ToString(&quot;yyyyMMddhhmm&quot;) + rd.Next() + &quot;.doc…

    胡同里的砖头2014/3/12【.NET/Web】
  • C#根据url读取网站源码

    string GetURLContent(string url, string EncodingType) { string PetiResp = &quot;&quot;; Stream mystream; //&quot;http://go.microsoft.com/fwlink/?LinkId=25817&quot; …

    胡同里的砖头2014/3/12【.NET/Web】
  • 检索 COM 类工厂中 CLSID 为XX的组件时失败

    .NET导出Excel遇到的80070005错误的解决方法: 检索 COM 类工厂中 CLSID 为 {00024500-0000-0000-C000-000000000046}的组件时失败,原因是出现以下错误: 80070005基本上.net导出excel文件,都需要如此配置一下,不配置有的时候没错,而配置后基本应该不会出错。 具体配置方法如下: 1:在服务器上安装office的Excel软件.…

    胡同里的砖头2014/1/1【.NET/Web】
  • asp.net 中如何过滤html标签

    asp.net 中如何过滤html标签 方法一: using System.Text.RegularExpressions; public string RemoveHtml(string strHtml)//取出html标签 { string strhtml = Regex.Replace(strHtml, &quot;&lt;.+?&gt;&quot;, &…

    胡同里的砖头2013/12/19【.NET/Web】
  • ASP.NET 获取URL信息祥细

    如果测试的url地址是http://www.test.com/testweb/default.aspx, 结果如下: Request.ApplicationPath:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;/testweb Request.Cu…

    胡同里的砖头2013/12/19【.NET/Web】
  • ListBox添加集合

    protected void Button1_Click(object sender, EventArgs e) &nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for (int i = 0; i &lt; ListBox1.Items.Count; i++) &nbsp;&nbsp;&nbsp;&nbsp;&n…

    胡同里的砖头2013/12/19【.NET/Web】
  • 动态生成静态页面 ASP.NET

    protected void Button1_Click(object sender, EventArgs e)&nbsp;&nbsp;&nbsp; {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; StreamReader sr = null; //声明一个读取流,暂未实例化&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;…

    胡同里的砖头2013/12/19【.NET/Web】
  • ASP.NET中计算两个日期差

    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 = &quot;相差:&quot; +ts.Days.ToString()+&quot;天…

    胡同里的砖头2013/12/19【.NET/Web】
  • C#获得明天,后天,昨天,前天等日期

    DateTime dt = DateTime.Now; dt.AddDays(-1);//-1为昨天 那么后天为 dt.AddDays(2);

    胡同里的砖头2013/12/19【.NET/Web】
  • ASP.NET JS获取数据控件中索引行的所有

    注册单击事件源的事件: 第一:在要触发事件的控件(服务器控件) 添加 OnClientClick=&quot;return CheckGiftNum(this)&quot; 事件。 第二:在要执行的js函数中 function checkvalue(参数 jsstr) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; jsstr.i…

    胡同里的砖头2013/12/19【.NET/Web】
  • ASP.NET 后台弹出alert对话框不影响

    Page.ClientScript.RegisterClientScriptBlock(this.GetType(), &quot;a&quot;, &quot;&lt;script&gt;alert('请选择您要上传的图片!');&lt;/script&gt;&quot;);

    胡同里的砖头2013/12/19【.NET/Web】
  • WebService调用Session

    [WebMethod(EnableSession = true)]

    胡同里的砖头2013/12/19【.NET/Web】
  • ASP.NET 实现国际化多语言选择

    全局方案: 在资源方案视图中选中网站,右键,点击[添加ASP.NET 文件夹]-&gt;[App_GlobalResources] 再选中App_GlobalResources文件夹,右键,点击[添加新项],在弹出的对话框中选中“资源文件”,命名为“LocalizedText.resx”,点击[ 添加],如图所示: 双击LocalizedText.resx进行编辑,添加一…

    胡同里的砖头2013/12/19【.NET/Web】
  • C# 对字符串加密(MD5,SHA1)

    //适用于C#语言 //使用前需导入以下命名空间:using System.Web.Security; //第一个参数为需加密的字符串,第二个参数为加密的格式(只有SHA1和MD5两种,可任选一种) public string EncryptPassword(string PasswordString, string PasswordFormat) &nbsp;&nbsp;&nbs…

    胡同里的砖头2013/12/19【.NET/Web】
  • ASP.NET 设置上传附件的大小

    在Web.Config的&lt;styletem.web&gt;里面加入以下节点 &lt;httpRuntime maxRequestLength=&quot;10240&quot; useFullyQualifiedRedirectUrl=&quot;true&quot; executionTimeout=&quot;100&quot;/&gt; maxRequestLength=10240…

    胡同里的砖头2013/12/19【.NET/Web】
  • ASP.NET 出错时候跳出出错页面

    在web.config里 &lt;configuration&gt; &lt;system.web&gt; &lt;customErrors mode=&quot;On&quot; defaultRedirect=&quot;GenericErrorPage.htm&quot;&gt; &lt;error statusCode=&quot;403&quot; redirect=&quot;NoAc…

    胡同里的砖头2013/12/19【.NET/Web】
  • ASP.NET 在JS端获取DropDownL

    var ddr= document.getElementById(&quot;ctl00_ContentPlaceHolder3_Gw_Send1_DropDownList2&quot;); alert(ddr.options[ddr.selectedIndex].text); var peoples = document.getElementById(&quot;ctl00_Conten…

    胡同里的砖头2013/12/19【.NET/Web】
  • ASP.NET C#发邮件

    using System.Web.Mail; System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient();&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; client.Host = &quot;smtp.163.com&quot;;//邮件服务器&nbsp;&nbsp;&nbsp;…

    胡同里的砖头2013/12/19【.NET/Web】
站点声明:
1、本站【胡同里的砖头】个人博客,借鉴网上一些博客模板,取其各优点模块自行拼装开发,本博客开发纯属个人爱好。
2、所有笔记提供给广大用户交流使用,可转载,可复制,纯个人开发所遇问题锦集记录使用
Copyright © huzlblog.com All Rights Reserved. 备案号:苏ICP备2021056683号-8