资源简介
简单通讯录实现功能:1.登录 2.注册 3.后台管理 4.前台登录显示 5.创建联系人 6.密码修改
代码片段和文件信息
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.Data.SqlClient;
public partial class admin : System.Web.UI.Page
{
DBManage db;
string strUserID;
protected void Page_Load(object sender EventArgs e)
{
if (!Page.IsPostBack)
{
MyBind(“select * from tb_user“);
strUserID = Request.QueryString[“userID“].ToString();
Hyperlink1_pwd.NavigateUrl = “~/pwd.aspx?userID=“ + strUserID;
}
}
void MyBind(String strSql)
{
db = new DBManage();
db.sqlConn();
SqlDataAdapter da = new SqlDataAdapter(strSql db.conn);
DataSet ds = new DataSet();
da.Fill(ds);
GridView1.DataSource = ds;
GridView1.DataBind();
}
protected void Button1_Click(object sender EventArgs e)
{
string strKey = TextBox1_key.Text.Trim();
string strID = ““;
if (DropDownList1_select.Text == “用户名“)
{
strID = “userID“;
}
if (DropDownList1_select.Text == “姓名“)
{
strID = “userName“;
}
if (DropDownList1_select.Text == “权限“)
{
strID = “role“;
}
String strSql = “select * from tb_user where “ + strID + “ like ‘“ + strKey + “%‘“;
MyBind(strSql);
}
protected void GridView1_RowDeleting(object sender GridViewDeleteEventArgs e)
{
db = new DBManage();
db.sqlConn();
string sql = “delete from tb_user where userID=‘“ + GridView1.DataKeys[e.RowIndex].Value.ToString() + “‘“;
SqlCommand cmd = new SqlCommand(sql db.conn);
cmd.ExecuteNonQuery();
db.closeDB();
MyBind(“select * from tb_user“);//调用MyBind()子程序
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-06-25 01:38 AddressBook\
目录 0 2013-06-23 22:30 AddressBook\App_Code\
文件 2594 2013-06-23 22:30 AddressBook\App_Code\DBManage.cs
文件 1546 2013-06-23 16:47 AddressBook\Web.Config
文件 3145728 2013-07-17 23:37 AddressBook\addressBook.mdf
文件 1048576 2013-07-17 23:37 AddressBook\addressBook_log.ldf
文件 3217 2013-06-25 00:04 AddressBook\admin.aspx
文件 2100 2013-06-24 23:53 AddressBook\admin.aspx.cs
文件 2482 2013-06-24 14:48 AddressBook\login.aspx
文件 2310 2013-06-24 22:55 AddressBook\login.aspx.cs
文件 5231 2013-06-24 14:48 AddressBook\myst
文件 5127 2013-06-24 23:40 AddressBook\newInfo.aspx
文件 2223 2013-06-24 23:40 AddressBook\newInfo.aspx.cs
文件 3049 2013-06-24 09:35 AddressBook\pwd.aspx
文件 1692 2013-06-24 09:42 AddressBook\pwd.aspx.cs
文件 3513 2013-06-24 09:35 AddressBook\register.aspx
文件 1142 2013-06-24 09:27 AddressBook\register.aspx.cs
文件 3702 2013-06-25 01:36 AddressBook\userInfo.aspx
文件 3857 2013-06-25 01:38 AddressBook\userInfo.aspx.cs
相关资源
- 个人通讯录管理系统C#+Sql Sever
- VS实现简单通讯录
- C# 个人通讯录系统
- C# winform 通讯录软件
- C#个人通讯录管理系统含有数据库
- C#-通讯录+vs2005+sql2000
- ASP.NET通讯录
- 通讯录系统设计C#语言开发
- C#通讯录管理系统源程序
- c#做的简单通讯录
- .net网页通讯录管理系统
- c#通讯录系统 c#通讯录系统
- 通讯录管理系统sqlserver版
- C#个人通讯录系统
- C#个人通讯录管理系统
- C#通讯录实现
- ASP.NET C# 电子通讯录系统.
- ASP.NET通讯录小程序
- asp.net在线通讯录系统
- c#课程设计-模仿手机通讯录
- C#编写的通讯录管理系统C#源代码程序
- C#编写的通讯录管理系统源代码程序
- c#制作一个通讯录
- c#通讯录管理系统课程设计报告
- 三层架构——通讯录
- C#通讯录项目学生期末作业+C#.通讯录
- 通讯录模板
- 中国矿业大学程序设计综合实践学生
- C# windows窗体程序 通讯录
- 通讯录,不用数据库,功能很强大
评论
共有 条评论