12 2009 档案
摘要:using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Text;public partial class pay : Sys
阅读全文
摘要:/// /// 通用数据库接口 /// using System; using System.Collections; using System.Collections.Specialized; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.Data.Comm...
阅读全文
摘要://多个代理背后的ip地址文件名:IPAddress.csusing 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.WebParts;using System.Web.UI.HtmlControls;using System.Text.RegularExpressions;namespa
阅读全文
摘要:using System; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using Syste...
阅读全文
摘要:登录的时候先取cookie,取到就加1.然后保存。防止同一账户重复登录放在登陆成功的地方:stringkey=TextBox1.Text;//用户名文本框设为cache关键字stringuer=Convert.ToString(Cache[key]);//读取cache中用户相应的值if(uer==null||uer==String.Empty)//判断cache中是否有用户的信息,如果没有相关的...
阅读全文
摘要:一个外层div ScriptManager1 UpdatePanel1 GridView1 Triggers html:
阅读全文
摘要:官方网没有.net版本 只有php版 下面是.net版css:js:html:后台:Upload.cs:Web.config:实现IHttpHandler 接口可用.axd直接访问在开发一个上传客户端的时间,实现了IHttpHandler 封装一个新类。目的是给外部程序(如flash,flex,javascrtip)访问。不需要建立html、aspx形式文件。web.config配置<sys...
阅读全文
摘要:using System.Text.RegularExpressions; //正则string strHtml = " </ul> <div id=\"photo-tags\"> <h3 id=\"tags-title\">Tags in this photo: </h3> <ul id='tags'> <li> <a href='/user/669345/tags/Belgium'>Belgium </a> <
阅读全文
摘要:设置jmail服务器: 用户名邮箱 | 密码 | 服务器 <add name="email" connectionString="itn0300012@the-capable.com.cn|666666|192.168.8.8" /><add name="emailac1" connectionString="itn0300012@the-capable.com.cn" />Outlook Express—工具—账户常规--邮件账户:服务器--POP3:
阅读全文
摘要:调用:<TD bgColor=#ecf5ff colSpan=2> <INPUT type=hidden name=content> <IFRAME id=eWebEditor1 height=450 src="../EwebEditor/ewebeditor.htm?id=content&style=southidc" frameBorder=0 width=550 scrolling=no> </IFRAME> </TD>问题:出现无法上传 因为不是在asp环境下 如图 解决:IIS下配置 多个
阅读全文
摘要:官方网:http://www.uploadify.com/ 只有PHP版本 对于我们.net的来说是一个遗憾!现在奉献一个c#版本,希望对大家有用。看代码其实很简单,在做这个之前遇到许多问题,特别是在IHttpHandler 里面,只有经历过了才会体会到,还是给解决了!直接运行html出现下面错误 要在vs运行下才没有下面错误 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.d
阅读全文
摘要:页面:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html
阅读全文
摘要:html:WebService.cs:
阅读全文
摘要:/*a表 a.user_id a.name b表 b.user_id b.name c表 c.user_id c.user_type 当c表的 c.user_type = "a" 时 它显示 a表的 a.name 当c表的 c.user_type = "b" 时 它显示 b表的 b.name a,b,c表中的 a.user_id = c.user_id,b.user_id = c.user_id ...
阅读全文
摘要:<script type="text/javascript">var year = new Date().getFullYear();var month = new Date().getMonth();var result = [];for(var i = 1; i <= 31; i++){ var weekday = new Date(year, month, i).getDa...
阅读全文
摘要:sql语句优化性能不理想的系统中除了一部分是因为应用程序的负载确实超过了服务器的实际处理能力外,更多的是因为系统存在大量的SQL语句需要优化。为了获得稳定的执行性能,SQL语句越简单越好。对复杂的SQL语句,要设法对之进行简化。常见的简化规则如下:1)不要有超过5个以上的表连接(JOIN)2)考虑使...
阅读全文
摘要:没有弹出框 这样才有弹出对话框运行后,不论点击哪一个li,都是alert提示“4”。这就是一个需要注意的地方:闭包允许内层函数引用父函数中的变量,但是该变量是最终值。闭包引用的变量i,是循环结束后的值用闭包来解决<script language="javascript" type="text/javascript">var li=document.getElem...
阅读全文