摘要:
http://mabp.kiev.ua/content/source/autocomplete/autocomplete.html改造上面地址的下载地址:/Files/ggbbeyou/GoogAuto.rar 阅读全文
摘要:
需要转换的 目前就这几个 ' " < > 被转换成了 & apos; & quot; & lt; & gt; Mark~ 补充 下面是五个在XML文档中预定义好的实体:< < 小于号 > > 大于号 & & 和 ' ' 单引号 " " 双引号 实体必须以符... 阅读全文
摘要:
SELECT UserId AS id FROM IndagateResult WHERE (UserId = (SELECT Max(UserId ) FROM IndagateResult WHERE UserId < 741)) UNION ALL SELECT UserId AS id FROM IndagateResult WHERE (UserId = (SELECT Min(U... 阅读全文
摘要:
Sys.WebForms.PageRequestManagerParserErrorException:The message received from the server could not be parsed.Common causes for this error are when the response is modified by calls to Response.Write()... 阅读全文
摘要:
获取Select :获取select 选中的 text:$("#ddlRegType").find("option:selected").text();获取select选中的 value:$("#ddlRegType ").val();获取select选中的索引:$("#ddlRegType ").get(0).selectedIndex;设置select: 设置select 选中的索引:$("#... 阅读全文
摘要:
用接口寫了一個序列的接口一直提示 失敗,查找很久發現時缺少.NET FRAMEWORK 3.5 SP1補丁所致 阅读全文
摘要:
如果不使用VS.NETIDE,您也可以通过如下的步骤来引用WebServices:(1)通过.NETFramework提供的WSDL.EXE实用工具,生成C#或者VB文件。wsdl.exe/l:CS/n:myNamespace/out:myFilename.cshttp://localhost/webservices/hello.asmx?wsdl(2)然后,将生成的文件如myFilename.c... 阅读全文
摘要:
private string GetAppPath() { string applicationPath = HttpContext.Current.Request.ApplicationPath; if (applicationPath.Length > 1) { applicationPath = applicationPath + "/"; } return applicationP... 阅读全文
摘要:
/NET打包并附加数据库.rar (原教程及项目)更新包如下:更新了创建站点不再停止IIS,不影响其他站点,可以设置站点名称,端口,选择安装目录,附加数据库安装后,自动修改配置文件的数据库连接字符串文件如下:2010-02-09修改打包.rar///////////////////2010-3-4日,再此修改 了安装.NET2.0后IIS 自动选择ASP.NET2.0的版本,而不是默认选择1.0的... 阅读全文
摘要:
1.数据库存储的数据格式是unicode ,咨询N多人也没有解决问题。2.要在.NET正常读取,并转换为繁体字,是经过下列步骤:unicode string-> unicode byte -> gb2312 byte -> big5 string3.样图如下:4.解决方案如下: private void Form1_Load(object sender, EventArgs e)... 阅读全文