码迷,mamicode.com
首页 > Web开发
Asp.Net MVC5 授权学习总结
一:MVC 授权1. [Authorize] : 可以写在类或者方法上,标记此属性后,必须先登入才可进入此功能 [Authorize] public ActionResult About() { ViewBag.Message = "Your appli...
分类:Web程序   时间:2015-07-08 14:33:58    阅读次数:183
【转】反向AJAX
原文链接:http://blog.csdn.net/lccone/article/details/7743886反向Ajax的基本概念是客户端不必从服务器获取信息,服务器会把相关信息直接推送到客户端。这样做的目的是解决Ajax传统Web模型所带来的一个限制:实时信息很难从技术上解决。原因是,客户端必...
分类:Web程序   时间:2015-07-08 14:35:12    阅读次数:283
多行文字实现垂直居中 css3
用到的属性: display:table-cell; verical-align:middle; 多行文字实现垂直居中 现在我们要使这段文字垂直居中显示! 下面看 display 的各个属性:常用display1、div{di...
分类:Web程序   时间:2015-07-08 14:31:44    阅读次数:151
Eclipse+Axis2创建WebService和相应的客户端调用
一、工具介绍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
Yet another way to manage your NHibernate ISessionFactory
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
ASP.NET - 页面传值 Request.QuerString[].ToString();
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
poj1258 Agri-Net 最小生成树
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 k,每个返回hour和ad_network_id最大的两个记录(SUBSTRING,order,COUNT_STAR,limit)
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
editor多功能文本框在有些计算机上不能正常加载,解决方法,本人用的是把js调用方法放到<body></body>后面)
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
WebBrowser控件打开https站点
与上一篇博文一样,此文亦是由于开发DropboxAPI中遇到问题衍生出来的。由于需要重定向https类型网站,但自己的https证书是自签名的,总是提示‘网站的安全证书存在问题’。
分类:Web程序   时间:2015-07-08 14:25:39    阅读次数:230
.NET: XML
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
hibernate 异常:Unexpected Exception caught setting
异常信息: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源码片段分析(1)音频缓冲拷贝
源码位置webrtc/webrtc/modules/audio_device/ios/audio_device_ios.cc函数OSStatus AudioDeviceIPhone::RecordProcessImpl( A...
分类:Web程序   时间:2015-07-08 14:25:18    阅读次数:266
ASP.NET - Eval数据绑定
新闻分类 首页 ">
分类:Web程序   时间:2015-07-08 14:22:55    阅读次数:130
hibernate 异常:could not execute statement
错误信息: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
js 获取某年的某天是第几周
/**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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!