资源简介
VSS2005开发环境,运用C#语言,开发基于WEB模式的合同管理系统,系统模块包含合同添加,删除,修改和查看等基本功能,还包括合同权限设置,系统设置和上传附件等多功能合为一体,送给需要的人
代码片段和文件信息
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Configuration;
using System.Text;
using System.Net;
using System.IO;
namespace ContractManager
{
///
/// AddContract 的摘要说明。
///
public partial class AddContract : System.Web.UI.Page
{
protected DatabaseClass db=new DatabaseClass();
private string connstr = System.Configuration.ConfigurationSettings.AppSettings[“ConnStringDefault“];
protected System.Web.UI.WebControls.TextBox TextBox6;
protected System.Web.UI.HtmlControls.HtmlInputText ddd;
protected void Page_Load(object sender System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
if(Session[“CurUser“]==null)
{
Page.RegisterStartupscript(“提示““ript languague=javascript>alert(‘登陆超时,请重新登陆!‘);window.opener.document.location.href=‘Login.aspx‘;window.close(); ript>“);
return;
}
// string sql = “select * from DepartmentInfo“;
// SqlConnection conn1 = new SqlConnection(connstr);
// conn1.Open();
// SqlDataReader reader1 = db.connected(sql conn1);
// while(reader1.Read())
// {
// DropDownList1.Items.Add(reader1[“DepartmentName“].ToString());
// }
string tjsql=Session[“Leibie_sql“].ToString();
tjsql=tjsql.Replace(“LeiBie““Lb_name“);
DropDownList2.Items.Clear();
string sql = “select * from LeiBie“;
if(tjsql!=““)
{
sql = “select * from LeiBie where “+tjsql;
}
else
{
return;
}
SqlConnection conn2 = new SqlConnection(connstr);
conn2.Open();
SqlDataReader reader2 = db.connected(sql conn2);
while(reader2.Read())
{
DropDownList2.Items.Add(reader2[“Lb_name“].ToString());
}
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
///
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
///
private void InitializeComponent()
{
this.ImageButton1.Click += new System.Web.UI.ImageClickEventHandler(this.ImageButton1_Click);
}
#endregion
protected void Button1_Click(object sender System.EventArgs e)
{
string userid=Session[“CurUser_ID“].ToString();
string idd=this.TextBox1.Text.Trim()
cname=this.TextBox2.Text.Trim()
cmoney=this.TextBox3.Value
cduifang=this.text_duifang.Text.Trim()
leibie=this.DropDownList2.SelectedValue
ctime=this.ctime.Value;
string starttime=this.ctime2.Value;
string endtime=this.ctime3.Value;
string bzj=this.TextBox4.Value;
if(idd==““||cduifang==““||cname==““)
{
Page.RegisterStartupscript(“““ript languague=javascript>alert(‘合同编号、合同名称、合同金额和对方单位不能为空!
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 9380 2008-09-17 09:22 ContractManager\AddContract.aspx
文件 7870 2008-09-17 09:22 ContractManager\AddContract.aspx.cs
文件 5317 2008-07-21 09:38 ContractManager\AddContract.aspx.resx
文件 4007 2008-09-17 09:22 ContractManager\AddDepartment.aspx
文件 2652 2008-09-17 09:22 ContractManager\AddDepartment.aspx.cs
文件 5317 2008-07-09 11:06 ContractManager\AddDepartment.aspx.resx
文件 4574 2008-09-17 09:22 ContractManager\AddInfo.aspx
文件 4086 2008-09-17 09:22 ContractManager\AddInfo.aspx.cs
文件 5317 2008-06-25 17:01 ContractManager\AddInfo.aspx.resx
文件 1464 2008-09-17 09:22 ContractManager\AddLeibie.aspx
文件 2155 2008-09-17 09:22 ContractManager\AddLeibie.aspx.cs
文件 5317 2008-06-26 16:58 ContractManager\AddLeibie.aspx.resx
文件 20153 2008-09-17 10:59 ContractManager\AddRole2.aspx
文件 7840 2008-09-17 10:58 ContractManager\AddRole2.aspx.cs
文件 5317 2008-07-24 10:01 ContractManager\AddRole2.aspx.resx
文件 5875 2008-09-17 09:22 ContractManager\AddRoles.aspx
文件 2717 2008-09-17 09:22 ContractManager\AddRoles.aspx.cs
文件 5317 2008-06-10 21:03 ContractManager\AddRoles.aspx.resx
文件 4225 2008-09-17 09:22 ContractManager\AddUserInfo.aspx
文件 3266 2008-09-17 09:22 ContractManager\AddUserInfo.aspx.cs
文件 5317 2008-06-26 09:30 ContractManager\AddUserInfo.aspx.resx
文件 2115 2008-09-17 09:22 ContractManager\App_Code\AssemblyInfo.cs
文件 6501 2008-09-17 09:22 ContractManager\App_Code\Databa
文件 1381 2008-09-17 09:22 ContractManager\App_Code\Global.asax.cs
文件 423424 2002-01-01 06:49 ContractManager\bin\ContractManager.pdb
文件 186704 2002-01-17 16:22 ContractManager\bin\Microsoft.Web.UI.WebControls.dll
文件 20480 2007-11-08 14:17 ContractManager\bin\MSSQL.dll
文件 6853 2008-06-17 12:43 ContractManager\calendar.htm
文件 604 2008-09-17 09:22 ContractManager\ContractDtail.aspx
文件 1165 2008-09-17 09:22 ContractManager\ContractDtail.aspx.cs
............此处省略196个文件信息
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- ASP.NET程序开发范例宝典 百度云
- asp.net FileUpload 上传进度条
- 大型比赛竞赛抽签系统 可打印 c# vs
- 很好用的一个asp.net反编译软件
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- asp.net实现qq登陆
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- 亮剑asp.net案例导航项目开发
- 亮剑ASP.NET项目开发案例导航-part03共三
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
评论
共有 条评论