But how could you live and have no story to tell!
访问统计 original graphics

上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页
摘要: 1、web.config配置 在<system.web>中加入以下代码 <!-- 用户注册的配置信息 connectionStringName 数据库连接。这个要在web.config设置 enablePasswordRetrieval 获得一个值,指示当前成员资格提供程序是否配置为允许用户检索其密码。 enablePasswordReset 获得一个值,指示当前成员资格提供程序... 阅读全文
posted @ 2009-06-01 11:49 nextsoft 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 1、设置Internet选项:安全-自定义级别-将文件上传到服务器时包含本地目录路径-启用2、在加入head中加入 <style type="text/css"> #PreviewImg { FILTER: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale) } </style> &l... 阅读全文
posted @ 2009-06-01 11:48 nextsoft 阅读(1672) 评论(1) 推荐(1) 编辑
摘要: 1.检查web.config中是否加入对于asp.net ajax的支持的代码 2.检查ScriptManager中是否设置了EnableMethods=true 3.检查后台cs中是否引用的命名空间System.Web.Services或者加入了[System.Web.Services.WebMethod] 4.后台函数必须是public static 阅读全文
posted @ 2009-06-01 11:47 nextsoft 阅读(1081) 评论(0) 推荐(0) 编辑
摘要: 1判断select选项中 是否存在Value="paraValue"的Item 2向select选项中 加入一个Item 3从select选项中 删除一个Item 4删除select中选中的项 5修改select选项中 value="paraValue"的text为"paraText" 6设置select中text="paraText"的第一个Item为选中 7设置select中value="paraValue"的Item为选中 8得到select的当前选中项的value 9得到select的当前选中项的text 10得到select的当前选中项的Index 11清空select的项 阅读全文
posted @ 2009-04-29 10:44 nextsoft 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 代码: using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebP... 阅读全文
posted @ 2009-03-24 09:44 nextsoft 阅读(641) 评论(0) 推荐(0) 编辑
摘要: 本文通过一个实例向大家介绍用Visual C#进行Internet通讯编程的一些基本知识。我们知道.Net类包含了请求/响应层、应用协议层、传输层等层次。在本程序中,我们运用了位于请求/响应层的WebRequest类以及WebClient类等来实现高抽象程度的Internet通讯服务。本程序的功能是完成网络文件的下载。 阅读全文
posted @ 2009-03-23 14:52 nextsoft 阅读(871) 评论(0) 推荐(1) 编辑
摘要: stringObject.substring(start,stop) 阅读全文
posted @ 2009-03-01 15:02 nextsoft 阅读(429) 评论(0) 推荐(0) 编辑
摘要: stringObject.indexOf(searchvalue,fromindex) 阅读全文
posted @ 2009-03-01 14:58 nextsoft 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 解决思路:我们可以通过对web.config文件增加 配置节来对特定文件或者目录进行encoding配置 ,如下: 阅读全文
posted @ 2009-02-27 16:12 nextsoft 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 配置 ASP.NET 身份验证支持。该元素只能在计算机、站点或应用程序级别声明。如果试图在配置文件中的子目录或页级别上进行声明,则将产生分析器错误信息。 1 2 6 requireSSL="true|false" 7 slidingExpiration="true|false"> 8 ... 阅读全文
posted @ 2009-02-19 16:18 nextsoft 阅读(1164) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页