软件著作权通用代码范本.docx
- 文档编号:26115832
- 上传时间:2023-06-17
- 格式:DOCX
- 页数:166
- 大小:50.10KB
软件著作权通用代码范本.docx
《软件著作权通用代码范本.docx》由会员分享,可在线阅读,更多相关《软件著作权通用代码范本.docx(166页珍藏版)》请在冰豆网上搜索。
软件著作权通用代码范本
usingSystem;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Web;
usingSystem.Web.SessionState;
usingSystem.Web.UI;
usingSystem.Web.UI.WebControls;
usingSystem.Web.UI.HtmlControls;
usingSystem.Data.SqlClient;
usingSystem.Configuration;
namespaceOfficeOnline
{
///
/// Advice的摘要说明。
///
public class Advice:
System.Web.UI.Page
{
protectedSystem.Web.UI.WebControls.ImageButtonImageButton1;
protectedSystem.Web.UI.WebControls.DataGriddgdadvice;
protectedSystem.Web.UI.WebControls.ImageButtonImageButton2;
private void Page_Load(objectsender,System.EventArgs e)
{
if (!
IsPostBack)
{
//创建数据库连接和命令对象
SqlConnectionobjconn= new SqlConnection(ConfigurationSettings.AppSettings["connstr"]);
objconn.Open();
stringobjsql="Select*fromAdvice";
SqlDataAdapterda= new SqlDataAdapter(objsql,objconn);
//创建并填充DataSet
DataSetds= newDataSet();
da.Fill(ds);
dgdadvice.DataSource=ds;
dgdadvice.DataBind();
objconn.Close();
}
}
#region Web窗体设计器生成的代码
override protected voidOnInit(EventArgs e)
{
//
//CODEGEN:
该调用是ASP.NETWeb窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
///
/// 设计器支持所需的方法-不要使用代码编辑器修改
/// 此方法的内容。
///
private void InitializeComponent()
{
this.ImageButton1.Click+= newSystem.Web.UI.ImageClickEventHandler(this.ImageButton1_Click);
this.ImageButton2.Click+= newSystem.Web.UI.ImageClickEventHandler(this.ImageButton2_Click);
this.Load+= newSystem.EventHandler(this.Page_Load);
}
#endregion
private void ImageButton2_Click(objectsender,System.Web.UI.ImageClickEventArgse)
{
Response.Redirect("AddAdvice.aspx");
}
private void ImageButton1_Click(objectsender,System.Web.UI.ImageClickEventArgse)
{
Response.Redirect("Default.aspx");
}
}
}
usingSystem;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Web;
usingSystem.Web.SessionState;
usingSystem.Web.UI;
usingSystem.Web.UI.WebControls;
usingSystem.Web.UI.HtmlControls;
usingSystem.Data.SqlClient;
usingSystem.Configuration;
namespaceOfficeOnline
{
///
/// SchByDay的摘要说明。
///
public class SchByDay:
System.Web.UI.Page
{
protectedSystem.Web.UI.WebControls.LabellblErr;
protectedSystem.Web.UI.WebControls.ImageButtoncmdQuery;
protectedSystem.Web.UI.WebControls.DropDownListdropDay;
protectedSystem.Web.UI.WebControls.DropDownListdropMonth;
protectedSystem.Web.UI.WebControls.DataGriddgdsch;
protectedSystem.Web.UI.WebControls.Buttonbtnadd;
protectedSystem.Web.UI.WebControls.ButtonButton2;
protectedSystem.Web.UI.WebControls.TextBoxtxtYear;
private void Page_Load(objectsender,System.EventArgs e)
{
if (!
IsPostBack)
{
BindGrid();
}
}
public void BindGrid()
{
//创建数据库连接和命令对象
SqlConnectionobjconn= newSqlConnection(ConfigurationSettings.AppSettings["connstr"]);
SqlCommandobjcmd= new SqlCommand("AllSch",objconn);
//设定命令类型
objcmd.CommandType=CommandType.StoredProcedure;
//添加参数
//员工编号
SqlParameterparamEmpID= new SqlParameter("@EmpID",SqlDbType.Int);
paramEmpID.Value=Convert.ToInt32(Session["EmpID"]);
//paramEmpID.Value=1;
objcmd.Parameters.Add(paramEmpID);
//日程类型
SqlParameterparamSchTypeID= new SqlParameter("@SchTypeID",SqlDbType.Int);
paramSchTypeID.Direction=ParameterDirection.Output;
objcmd.Parameters.Add(paramSchTypeID);
//打开数据库连接
objconn.Open();
SqlDataReaderresult=objcmd.ExecuteReader(CommandBehavior.CloseConnection);
dgdsch.DataSource=result;
dgdsch.DataBind();
}
#region Web窗体设计器生成的代码
override protected voidOnInit(EventArgs e)
{
//
//CODEGEN:
该调用是ASP.NETWeb窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
///
/// 设计器支持所需的方法-不要使用代码编辑器修改
/// 此方法的内容。
///
private void InitializeComponent()
{
this.cmdQuery.Click+= newSystem.Web.UI.ImageClickEventHandler(this.cmdQuery_Click);
this.dgdsch.SelectedIndexChanged+= new System.EventHandler(this.dgdsch_SelectedIndexChanged);
this.btnadd.Click+= newSystem.EventHandler(this.btnadd_Click);
this.Button2.Click+= newSystem.EventHandler(this.Button2_Click);
this.Load+= newSystem.EventHandler(this.Page_Load);
}
#endregion
public void DataGrid_Page(Objectsender,DataGridPageChangedEventArgsE)
{
dgdsch.CurrentPageIndex=E.NewPageIndex;
BindGrid();
}
private void cmdAddNew_Click(objectsender,System.Web.UI.ImageClickEventArgse)
{
//Response.Redirect("SchAddUp.aspx?
day="&dateVar.ToShortDateString());
}
private void cmdQuery_Click(objectsender,System.Web.UI.ImageClickEventArgse)
{
if(txtYear.Text!
="")
{
int year=Int32.Parse(txtYear.Text);
intmonth=dropMonth.SelectedIndex+1;
int day=Int32.Parse(dropDay.SelectedItem.Text);
DateTimedateVar= new DateTime(year,month,day);
//Response.Write(dateVar);
//创建数据库连接和命令对象
SqlConnectionobjconn= new SqlConnection(ConfigurationSettings.AppSettings["connstr"]);
SqlCommandobjcmd= new SqlCommand("SelSch",objconn);
//设定命令类型
objcmd.CommandType=CommandType.StoredProcedure;
//添加参数
//员工编号
SqlParameterparamEmpID= new SqlParameter("@EmpID",SqlDbType.Int);
paramEmpID.Value=Convert.ToInt32(Session["EmpID"]);
//paramEmpID.Value=1;
objcmd.Parameters.Add(paramEmpID);
//日程类型
SqlParameterparamSchTypeID= new SqlParameter("@SchTypeID",SqlDbType.Int);
paramSchTypeID.Direction=ParameterDirection.Output;
objcmd.Parameters.Add(paramSchTypeID);
//执行时间
SqlParameterparamDate=new SqlParameter("@Date",SqlDbType.DateTime);
paramDate.Value=dateVar.ToShortDateString();
objcmd.Parameters.Add(paramDate);
//打开数据库连接
objconn.Open();
SqlDataReaderresult=objcmd.ExecuteReader(CommandBehavior.CloseConnection);
dgdsch.DataSource=result;
dgdsch.DataBind();
}
else
{
lblErr.Text="请输入年份";
}
}
private void btnadd_Click(objectsender,System.EventArgs e)
{
Response.Redirect("AddSch.aspx");
}
private void Button2_Click(objectsender,System.EventArgs e)
{
Response.Redirect("Default.aspx");
}
private void dgdsch_SelectedIndexChanged(object sender,System.EventArgse)
{
}
usingSystem;
usingMicrosoft.Win32;
usingSystem.Windows.Forms;
namespaceWHC.OrderWater.Commons
{
///
///注册表操作辅助类
///
publicsealedclassRegistryHelper
{
#region基础操作(读取和保存)
privatestaticstringSoftware_Key=@"Software\DeepLand\OrderWater";
///
///Getsthevaluebyregistrykey.Ifthekeydoesnotexist,returnemptystring.
///
///
///
publicstaticstringGetValue(stringkey)
{
returnGetValue(Software_Key,key);
}
///
///Getsthevaluebyregistrykey.Ifthekeydoesnotexist,returnemptystring.
///
///
///
publicstaticstringGetValue(stringsoftwareKey,stringkey)
{
conststringparameter="key";
if(null==key)
{
thrownewArgumentNullException(parameter);
}
stringstrRet=string.Empty;
try
{
RegistryKeyregKey=Registry.CurrentUser.OpenSubKey(softwareKey);
strRet=regKey.GetV
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 软件 著作权 通用 代码 范本