摘要: 代码如下:View Code 1 create table userOURealation(2 userid int not null,3 nodeid varchar(20) not null,4 primary key(userid,nodeid)5 )6 go 阅读全文
posted @ 2012-03-29 16:31 zhangchun 阅读(3336) 评论(0) 推荐(0) 编辑
摘要: 主要代码:View Code 1 public void SendMail() 2 { 3 string MailTo;//发送的邮件地址 4 string Subject;//发送邮件题目 5 //从数据库获得用户邮箱地址 6 DataSet ds = GetUserMail(UserID); 7 MailTo = ds.Tables[0].Rows[0][0].ToString(); 8 9 //读... 阅读全文
posted @ 2012-03-29 14:34 zhangchun 阅读(277) 评论(0) 推荐(0) 编辑
摘要: View Code 1 #region 导出按钮 2 /// <summary> 3 /// 导出按钮 4 /// </summary> 5 /// <param name="sender"></param> 6 /// <param name="e"></param> 7 protected void btnExport_Click(object sender, EventArgs e) 8 { 9 try10 {11 DataTable dt = new DataTable(); 阅读全文
posted @ 2012-03-29 13:46 zhangchun 阅读(2808) 评论(0) 推荐(0) 编辑
摘要: html页面代码:View Code 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <link rel="Stylesheet" href="Style 阅读全文
posted @ 2012-03-28 22:29 zhangchun 阅读(293) 评论(0) 推荐(0) 编辑
摘要: html代码:View Code 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <link rel="Stylesheet" href="Styles/ 阅读全文
posted @ 2012-03-27 21:50 zhangchun 阅读(2000) 评论(0) 推荐(0) 编辑
摘要: . oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键<table border oncontextmenu=return(false)><td>no</table> 可用于Table. <body onselectstart="return false"> 取消选取、防止复制. onpaste="return false" 不准粘贴. oncopy="return false;" oncut=" 阅读全文
posted @ 2012-03-26 13:39 zhangchun 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 系统:windows 20081、依次选择:开始---所有程序---管理工具---高级安全 Windows 防火墙。(有的电脑在所有程序里面可能没有”管理工具”,这时可以开始----在空白处鼠标右击---属性---自定义---找到系统管理工具,选择“在所有程序菜单上显示”,这样在所有程序里面就有管理工具了)2、在高级安全 Windows 防火墙的左边栏,选择“入站规则”。3、在右边栏选择"新建规则“。4、在弹出的窗口依次选择:选中端口---下一步---选中TCP以及特定本地端口,填入要开放的端口号(这里填入80,当让也可以选择开放所有端口)---下一步---选中允许连接---下一步- 阅读全文
posted @ 2012-03-26 11:37 zhangchun 阅读(218) 评论(0) 推荐(0) 编辑
摘要: html页面:View Code 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head runat="server"> 4 <title></title> 5 阅读全文
posted @ 2012-03-24 12:12 zhangchun 阅读(547) 评论(0) 推荐(0) 编辑
摘要: Html代码:View Code <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title>无标题页</title></head><script type=&quo 阅读全文
posted @ 2012-03-23 16:45 zhangchun 阅读(1299) 评论(0) 推荐(0) 编辑
摘要: 前台页面代码:View Code 1 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ImportUsers.aspx.cs" Inherits="SystemMang_UserMang_ImportUsers" %> 2 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml 阅读全文
posted @ 2012-03-23 14:20 zhangchun 阅读(11129) 评论(1) 推荐(2) 编辑