posted @ 2014-09-18 11:05
09 2014 档案
摘要:下载地址:http://zxingnet.codeplex.com/zxing.net是.net平台下编解条形码和二维码的工具,使用非常方便。首先下载二进制dll文件,引入工程;代码:C#代码usingSystem;usingSystem.Collections.Generic;usingSyste...
阅读全文
摘要:方法一.//保存在session 在要保存的页面加入如下代码[html] view plaincopyStringls_URL=newStringBuffer(request.getRequestURL()).toString();session.setAttribute("ls_URL",ls_U...
阅读全文
posted @ 2014-09-16 13:49
摘要:代码如下:Session.Abandon(); Response.Redirect("Login.aspx"); 但是这样点点击浏览器的后退仍然可以回到刚才的页面,这可不行,在网上找了一下,也有不少人遇到这样的问题,试了一些方法,都不管用。不过最后还是找到,共享一下。 http://blog.csd...
阅读全文
posted @ 2014-09-16 13:43
摘要:http://www.cnblogs.com/gaoweipeng/category/203080.htmlhttp://blog.csdn.net/liu_ben_qian/article/details/7010256
阅读全文
posted @ 2014-09-15 18:35
摘要:方法一:利用Httphandler实现URL重写(伪URL及伪静态)我们有时候会见到这样的地址:“http://www.huoho.com/show-12-34.html”,你或许认为在站点服务器根目录“/”下存在名为“show-12-34.html”的文件,其实实际它可能是不存在的,而可能你看到的...
阅读全文
posted @ 2014-09-15 17:23
摘要:framework4.0 IIS7下urlrewriter设置问题http://www.cnblogs.com/litian/articles/alex.htmlIIS开启伪静态后html静态页面无法访问的解决方法http://www.xxzh.org/web/IIS-weijingtai-html...
阅读全文
posted @ 2014-09-14 21:08
摘要:将数据作为XML数据发送,例如:public void PostXml(string url, string xml){byte[] bytes = Encoding.UTF8.GetBytes(xml);HttpWebRequest request = (HttpWebRequest) WebRe...
阅读全文
posted @ 2014-09-10 11:34