05 2012 档案
摘要:名人名言:每个人在他生活中都经历过不幸和痛苦。有些人在苦难中只想到自己,他就悲观消极发出绝望的哀号;有些人在苦难中还想到别人,想到集体,想到祖先和子孙,想到祖国和全人类,他就得到乐观和自信。——洗星海Visual Studio 中提供了浏览器控件 WebBrowser, 可以用在 WinForm 中充当一个小型的浏览器.WebBrowser 本身提供了调用页面中 js 函数的方法, 但没有直接提供可以添加执行新的 js 脚本的功能. 如果有如下的 js 函数:1 <script type="text/javascript">2 function add(num1
阅读全文
摘要:简单介绍下它的用法:一.AjaxPro的使用 1.在项目中添加引用,浏览找到AjaxPro.2.dll文件2.在Web.config中的system.web里面写入以下代码 </configuration><system.web> <httpHandlers> <add verb="*" path="*.ashx" type="AjaxPro.AjaxHandlerFactory,AjaxPro.2"/> </httpHandlers></system.web>&
阅读全文
摘要:用C#如何创建、读取cookie:一、创建cookie,并写入数据: //创建、写入Cookie HttpCookie cookie = Request.Cookies["MWS_User"]; if (cookie == null) { cookie = new HttpCookie("MWS_User"); } cookie.Values.Set("UserID", strUserID); Response.SetCookie(cookie);二、读取cookie:HttpCookie cookie = Request.Cooki
阅读全文

浙公网安备 33010602011771号