摘要: 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 阅读(195) 评论(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 阅读(166) 评论(0) 推荐(0)