码迷,mamicode.com
首页 >  
搜索关键字:current    ( 7130个结果
获取IP地址
//方法一HttpContext.Current.Request.UserHostAddress; //方法二HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];//方法三string strHostName = System.Net...
分类:其他好文   时间:2014-11-07 16:22:32    阅读次数:172
smart模版学习笔记一
1、简单语句1.1、foreach...if....else 1.1.1 json内容:{ "tag_require":["111","222","333","444","555","6666"]} 1.1.2 tpl页面 current" title="...
分类:其他好文   时间:2014-11-06 19:21:45    阅读次数:218
.NET生成带Logo的二维码
使用ThoughtWorks.QRCode生成,利用这个库来生成带Logo的二维码(就是中间嵌了一个图片的二维码),直接见代码: HttpContext context = HttpContext.Current; String data = "二维码的内容";//如果是链接会...
分类:Web程序   时间:2014-11-06 19:05:55    阅读次数:243
获取分解微信消息
string postStr = ""; Stream s = System.Web.HttpContext.Current.Request.InputStream; byte[] b = new byte[s.Length]; s.Read(b, 0, (int)s.Length); postSt...
分类:微信   时间:2014-11-06 17:16:13    阅读次数:436
ASP.NET获取IP的6种方法
服务端://方法一HttpContext.Current.Request.UserHostAddress;//方法二HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];//方法三string strHostName = System....
分类:Web程序   时间:2014-11-06 12:32:33    阅读次数:176
C语言链表操作
v2版为非健全版本,很明显不能再最前端插入。 int?sll_insert_v2(Node?*current,?int?value) { ????Node?*prev; ????Node?*newNode; ????while?(current?!=?NULL?&&?current->valu...
分类:编程语言   时间:2014-11-05 15:11:35    阅读次数:153
Spring Proxying Mechanisms_Spring代理机制
Spring Proxying Mechanisms_Spring代理机制 来自:/current/spring-framework-reference4.1.1 Spring AOP uses either JDK dynamic proxies or CGLIB to create the proxy for a given target object. (JDK dyna...
分类:编程语言   时间:2014-11-05 13:14:40    阅读次数:193
VC2005 warning C4819 消除方法
一、Warning C4819:The file contains a character that can ot be represented in the current code page(936). save the file in unicode format to prevent dat...
分类:其他好文   时间:2014-11-05 12:57:38    阅读次数:221
使用NotePad++ 运行轻量级的C#代码
在notepad++中新建文件hello.cs,F5运行,配置命令行cmd /K C:\windows\Microsoft.NET\Framework\v4.0.30319\csc.exe /t:exe /out:$(FULL_CURRENT_PATH).exe $(FULL_CURRENT_PAT...
分类:Windows程序   时间:2014-11-04 17:16:46    阅读次数:203
Unity2d游戏开发学习笔记 ,欧拉角,四元数,万向节,Lerp,Mathf
*MathfUnity Mathf 数学运算(C#)*Vector3.LerpThe second line usesVector3.Lerpto determine the zombie’s new location along the path between its current and t...
分类:编程语言   时间:2014-11-04 14:24:58    阅读次数:341
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!