码迷,mamicode.com
首页 >  
搜索关键字:domain admins    ( 4012个结果
Repository
namespace MyRepository.Domain.Infrastructure{ public class Repository : IRepository where TEntity : class { protected BookStoreDbContext ...
分类:其他好文   时间:2014-11-28 15:43:12    阅读次数:113
Circuit translates I2C voltages
This Design Idea explores level-shifting an I2C bus from 5V/ground (positive domain) to ground/–5V (negative domain). In multisupply systems, you some...
分类:其他好文   时间:2014-11-28 14:15:37    阅读次数:226
关于cookie的使用
cookie的属性 domain:域名,即cookie所能使用的范围,当然当前域下可以在当前域下cookie,还有一个就是该域名的父级域名(子级的域名下是可以访问父级域名下的cookie,父级域名是不可以不作处理的情况下访问子级域名的cookie) path:此参数也控制着cookie的访问,如.....
分类:其他好文   时间:2014-11-28 14:04:34    阅读次数:132
weblogic 服务莫名其妙的关闭 报段错误
现场发布了4个weblogic节点,weblogic版本是10.3,jdk的版本是1.6.0_24。报错是: /bea/GG/domains/domain/bin/startWebLogic.sh: line 188: 22691 段错误                  ${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} -Dweblogic.Name=$...
分类:Web程序   时间:2014-11-28 08:46:39    阅读次数:633
php 删除cookie有效方法
php 删除cookie有效方法关于删除cookie的说明开始-----bool setcookie ( string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] )要删...
分类:Web程序   时间:2014-11-27 23:25:09    阅读次数:280
shell脚本之dns安装配置
conf="/var/named/chroot/etc/named.conf"datadir="/var/named/chroot/var/named"rpm-qbind&>/dev/nullif[$?-ne0];then yum-yinstallbindbind-chrootcaching* echo"options{ directory\"/var/named\";};">$conffiread-p"pleaseinputdomain:"domaingrep$domain$conf&a..
分类:系统相关   时间:2014-11-27 18:58:56    阅读次数:223
清除cookie
private static void DetelteAllCookies(string domain) { if (HttpContext.Current.Request.Cookies["userToken"] == null) { string cookieName; int limit =....
分类:其他好文   时间:2014-11-27 12:36:29    阅读次数:136
谈谈jQuery和跨域访问
跨域访问,需要服务端支持JSONP,JSONP使用JSON填充响应结果。jQuery中的ajax方法对JSONP有很好的支持,甚至无需特别声明,jQuery内部根据请求地址自动判断,如果是跨域的就启动JSONP,如果是本域就是常规的AJAX。但是正因为跨域请求的返回结果不是常规的JSON,所以不仅需要客户端有特殊的方法,服务端也需要对JSONP进行专门的支持:服务端需要知道下载完毕后的回调函数是什么,需要把执行回调函数的JavaScript语句写入到响应流中。...
分类:Web程序   时间:2014-11-25 18:36:39    阅读次数:142
301 redirect Domain Name using global.asax
void Application_BeginRequest(object sender, EventArgs e){if (HttpContext.Current.Request.Url.ToString().ToLower().Contains("http://domain.com")){// n...
分类:其他好文   时间:2014-11-25 18:22:54    阅读次数:170
状态模式在领域驱动设计中的使用(Using the State pattern in a Domain Driven Design)
领域驱动设计是软件开发的一种方式,问题复杂的地方通过将具体实现和一个不断改进的核心业务概念的模型连接解决。这个概念是Eric Evans提出的,http://www.domaindrivendesign.org/这个网站来促进领域驱动设计的使用。关于领域驱动设计的定义,http://dddcommunity.org/resources/ddd_terms/,这个网站有很多的描述,DDD是一种软件开...
分类:其他好文   时间:2014-11-25 16:36:29    阅读次数:152
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!