摘要: View Code 1 using System; 2 using System.Collections; 3 using System.Collections.Generic; 4 using System.Linq; 5 using System.Text; 6 using System.Text.RegularExpressions; 7 using System.Web; 8 using System.Data; 9 using System.Data.SqlClient; 10 using System.Web.UI; 11 using System.IO; 12... 阅读全文
posted @ 2012-07-05 11:05 Star★ 阅读(287) 评论(0) 推荐(0) 编辑
摘要: View Code 1 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UserList.aspx.cs" Inherits="TopWin.DongFengYL.SQLMemberShip.WebCtrl._layout.WebForm2" %> 2 <%@ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefi 阅读全文
posted @ 2012-07-05 11:03 Star★ 阅读(1600) 评论(0) 推荐(0) 编辑
摘要: View Code 1 #region 密码验证 2 if (tbPassword.Text == "") 3 { 4 CommonFunction.ShowMessage(this.Page, "密码不能为空"); 5 return; 6 } 7 if (tbPassword.Text.Length < 8) 8 { 9 ... 阅读全文
posted @ 2012-07-05 11:01 Star★ 阅读(1176) 评论(0) 推荐(0) 编辑
摘要: View Code 1 public partial class UploadFile : System.Web.UI.Page 2 { 3 public List<UserEntity> User_List = new List<UserEntity>(); 4 protected void Page_Load(object sender, EventArgs e) 5 { 6 if (!IsPostBack) 7 { 8 Label1.V... 阅读全文
posted @ 2012-07-05 10:58 Star★ 阅读(179) 评论(0) 推荐(0) 编辑