一:MVC 授权1. [Authorize] : 可以写在类或者方法上,标记此属性后,必须先登入才可进入此功能 [Authorize] public ActionResult About() { ViewBag.Message = "Your appli...
分类:
Web程序 时间:
2015-07-08 14:33:58
阅读次数:
183
原文链接:http://blog.csdn.net/lccone/article/details/7743886反向Ajax的基本概念是客户端不必从服务器获取信息,服务器会把相关信息直接推送到客户端。这样做的目的是解决Ajax传统Web模型所带来的一个限制:实时信息很难从技术上解决。原因是,客户端必...
分类:
Web程序 时间:
2015-07-08 14:35:12
阅读次数:
283
用到的属性: display:table-cell; verical-align:middle; 多行文字实现垂直居中 现在我们要使这段文字垂直居中显示! 下面看 display 的各个属性:常用display1、div{di...
分类:
Web程序 时间:
2015-07-08 14:31:44
阅读次数:
151
一、工具介绍eclipse(luna) +axis2-1.6.3二、在Eclipse里面配置Axis21.下载最新版的axis2下载地址为:http://axis.apache.org/axis2/java/core/download.cgi2.在Eclipse中配置Axis2:Window—>Pr...
分类:
Web程序 时间:
2015-07-08 14:31:22
阅读次数:
176
So here is my current UnitOfWork implementation. This one makes use of the somewhat new current_session_context_class feature. I think this is quite s...
分类:
Web程序 时间:
2015-07-08 14:31:49
阅读次数:
134
public partial class WebForm2 : System.Web.UI.Page{ BLL.CategoryBLL categorybll = new CategoryBLL(); BLL.NewsBLL newsbll = new NewsBLL(); //接...
分类:
Web程序 时间:
2015-07-08 14:30:10
阅读次数:
130
Agri-NetTime Limit:1000MSMemory Limit:10000KTotal Submissions:44032Accepted:18001DescriptionFarmer John has been elected mayor of his town! One of his...
分类:
Web程序 时间:
2015-07-08 14:28:50
阅读次数:
117
pig里面有一个TOP功能。我不知道为什么用不了。有时间去看看pig源代码。SET job.name 'top_k';SET job.priority HIGH;--REGISTER piggybank.jar;REGISTER wizad-etl-udf-0.1.jar;--DEFINE Sequ...
分类:
Web程序 时间:
2015-07-08 14:30:14
阅读次数:
137
在线演示1本地下载jQuery是当今最流行的JS框架,利用jquery我们可以开发出很多高效的demo和成果。与此同时jquery相关的插件也可以很方便的完成一些特效,例如jquery scrollTo插件,可以方便的完成滑动到指定位置操作。记住由于jquery scrollto插件是依赖于jque...
分类:
Web程序 时间:
2015-07-08 14:28:54
阅读次数:
173
IE8 中"HTML Parsing Error:Unable to modify the parent container element before the child element is closed"错误一、又涨见识了 IE8报下面错误,而且是我的机器不报,同事的机器报,试了4台,两个报...
分类:
Web程序 时间:
2015-07-08 14:28:38
阅读次数:
127
与上一篇博文一样,此文亦是由于开发DropboxAPI中遇到问题衍生出来的。由于需要重定向https类型网站,但自己的https证书是自签名的,总是提示‘网站的安全证书存在问题’。
分类:
Web程序 时间:
2015-07-08 14:25:39
阅读次数:
230
XML在平常生活中用得很多,它的结构很简单,跟windows explorer有点像。对它进行操作主要有三种方式:XmlDocument,假设有这么一个XML文件Book.XML 1 2 3 4 5 数据结构 6 严蔚敏 7 30.00 8 9 10...
分类:
Web程序 时间:
2015-07-08 14:24:57
阅读次数:
162
异常信息:Unexpected Exception caught setting 'outHeight' on 'class com.srpm.core.project.seismicFortification.action.SeismicFortificationAction: Error set...
分类:
Web程序 时间:
2015-07-08 14:25:53
阅读次数:
189
源码位置webrtc/webrtc/modules/audio_device/ios/audio_device_ios.cc函数OSStatus AudioDeviceIPhone::RecordProcessImpl( A...
分类:
Web程序 时间:
2015-07-08 14:25:18
阅读次数:
266
错误信息:JDBC exception on Hibernate data access: SQLException for SQL [n/a]; SQL state [72000]; error code [12899]; could not execute statement; nested e...
分类:
Web程序 时间:
2015-07-08 14:19:26
阅读次数:
276
/**2 * 判断年份是否为润年3 *4 * @param {Number} year5 */6 function isLeapYear(year) {7 return (year % 400 == 0) || (year % 4 == 0 && year % 100 != 0);8 }9 /**1...
分类:
Web程序 时间:
2015-07-08 14:20:12
阅读次数:
129