上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: function TextInfo(element, info) { this._textBox = element; this.text = info; this._textBox.value = info; this._textBox.onblur = new createDelegate(this, this._onblur); this._textBox.onfocus = new createDelegate(this, this._onfocus); }TextInfo.prototype = { _onblur: function () { ... 阅读全文
posted @ 2012-12-23 17:13 csdnbbs 阅读(823) 评论(0) 推荐(0) 编辑
摘要: 问题: <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <%= DateTime.Now.ToString()%><br /> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label><br /> <asp:Button ID="Butto 阅读全文
posted @ 2012-12-23 13:51 csdnbbs 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1. 有2个JS文件:a.js,b.js. 如果在b.js中想得到关于a.js内容的提示,可以在b.js中添加一段注释 /// <reference path="a.js" />2.方法提示function getDateString(utc) { ///<summary>获取当前时间字符串形式</summary> ///<param name="utc" type="Boolean">是否为UTC格式</param> ///<returns type ="S 阅读全文
posted @ 2012-12-22 13:53 csdnbbs 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 1.创建profile数据库 A.打开:Visual Studio 命令提示cmd . B.执行:aspnet_regsql -A p -sqlexportonly pro.sql 命令 C.然后在SQL 管理器中执行pro.sql脚本。2.配置web.config <system.web> <profile enabled="true" automaticSaveEnabled="true" defaultProvider="AspNetSqlProfileProvider"> <providers&g 阅读全文
posted @ 2012-12-16 16:26 csdnbbs 阅读(188) 评论(0) 推荐(0) 编辑
摘要: var webRequest = null; function sendRequest(action) { webRequest = new Sys.Net.WebRequest(); webRequest.set_url("Handlers/Complex.ashx"); webRequest.get_headers()["action"] = action; webRequest.set_body("data=" + encodeURIComponent("Hello... 阅读全文
posted @ 2012-12-16 11:03 csdnbbs 阅读(160) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页