
ASP.NET
HP_BIGPIG
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
.NET中 判断远程文件是否存在(可以跨域)
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { IsExist("http://localhost/welcome2.png"); } }原创 2014-08-21 13:55:33 · 1317 阅读 · 0 评论 -
Additional information: A potentially dangerous Request.Form value was detected from the client
刚刚在写一个ASP.NET MVC项目的时候转载 2014-08-08 22:30:16 · 3510 阅读 · 0 评论 -
HTML 帮助器 声明Area方式
在asp.net mvc中,如果使用到Area技术,Html.ActionLink()生成的链接URL会有问题。可用以下方式解决。 new { area = ""}, null)%> new { area = "Profile" }, null)%> new { area = ""}, null)%> 注意:H转载 2014-11-05 23:34:43 · 722 阅读 · 0 评论