- 博客(11)
- 收藏
- 关注
转载 取CheckBoxList的值
Message.Text = "Selected Item(s):"; // Iterate through the Items collection of the CheckBoxList // control and display the selected items. for (int i=0; i
2005-09-06 17:37:00
740
转载 取CheckBoxList的值
Message.Text = "Selected Item(s):"; // Iterate through the Items collection of the CheckBoxList // control and display the selected items. for (int i=0; i
2005-09-06 17:34:00
724
转载 取得CheckBoxList的值
Message.Text = "Selected Item(s):"; // Iterate through the Items collection of the CheckBoxList // control and display the selected items. for (int i=0; i
2005-09-06 17:24:00
959
转载 验证码
我也是初学不大会 这是别人给我的验证码程序 image.aspx.csusing System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Web;using System.Web.SessionState;using System
2005-09-02 14:58:00
659
转载 c#.net常用函数列表
c#.net常用函数列表1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日
2005-08-17 17:13:00
470
转载 md5加密
public static string GetMD5(string str) { byte[] b=System.Text.Encoding.Default.GetBytes(str); b=new System.Security.Cryptography.MD5CryptoServiceProvider().ComputeHash(b); string ret=""; for
2005-08-17 14:27:00
621
转载 如何在传统 ASP 和 ASP.NET 之间共享会话状态
Billy YuenMicrosoft Corporation2003 年 2 月适用于:Microsoft ASP.NET摘要:讨论如何利用 Microsoft .NET 框架类和 .NET 框架的序列化特性,以便在传统 ASP 和 Microsoft ASP.NET 之间共享会话状态。通过共享会话状态,就允许在并行运行现有的 ASP 应用程序和 ASP.NET 应用程序的同时,分阶段地将 AS
2005-08-17 10:08:00
626
转载 ASP开发必备:WEB打印代码大全
1、控制"纵打"、 "横打"和"页面的边距"。 (1) function SetPrintSettings() { // -- advanced features factory.printing.SetMarginMeasure(2) // measure margins in inches factory.SetPageRange(false, 1, 3) /
2005-08-11 18:21:00
831
转载 部署ASP.NET的三大技术
部署ASP.NET的三大技术提纲: 一、概述 二、ASP.NET Web应用的结构 三、ASP.NET支持的部署机制 四、用XCOPY命令部署 五、用VS.NET的“复制项目”功能部署 六、用Web安装项目部署 6.1 Windows安装程序 6.2 VS.NET Web安装项目的特点 七、创建Web安装项目 八、安装ASP.NET Web应用程序 九、结束语 正文: 一、概述 在深入到配
2005-08-10 11:32:00
1590
转载 ASP.NET与数据库相关技巧 选择自 tongwenhuan2003 的 Blog
一、取得数据表 i 行 j 列的值 //建立并打开数据库连接 OleDbConnection conn=new OleDbConnection(); conn.ConnectionString=strConnectionString;//strConnectionString为数据库连接字符串 conn.Open(); string sql="select *
2005-08-06 10:29:00
595
转载 纯脚本搞掂DataGrid表表头不动,表身滚动。
function ScrollDataGrid() { var tb = document.getElementById("tbHeader"); var dg = document.getElementById("dgSearchResult"); if(dg!= null)
2005-08-06 09:50:00
1060
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人