?? commonrepairform.aspx.cs
字號:
?//文件名:CommonRepairForm.aspx.cs
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;
public partial class CommunityManage_CommonRepairForm : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string MyForbidString = Session["MyForbid"].ToString();
if (MyForbidString.IndexOf("B3") > 1)
{
Server.Transfer("~/SystemManage/AllErrorHelp.aspx");
}
}
protected void Button1_Click(object sender, EventArgs e)
{//新增公共維修信息
this.SqlDataSource2.Insert();
}
protected void Button2_Click(object sender, EventArgs e)
{//修改公共維修信息
this.SqlDataSource2.Update();
}
protected void Button4_Click(object sender, EventArgs e)
{//打印公共維修單信息
this.Response.Redirect("~/CommunityManage/CommonRepairPrint.aspx?MyID=" + this.TextBox2.Text);
}
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{//彈出刪除操作確認對話框
if (e.Row.RowType == DataControlRowType.DataRow)
{
Button MyButton = (Button)e.Row.FindControl("Button1");
MyButton.OnClientClick = "return confirm('是否確認刪除當前選擇的記錄?')";
}
}
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{//在控件中顯示選擇的記錄
this.TextBox2.Text = this.GridView1.SelectedRow.Cells[2].Text.ToString();
this.DropDownList1.SelectedValue = this.GridView1.SelectedRow.Cells[3].Text.ToString();
DateTime MyDate = DateTime.Parse(this.GridView1.SelectedRow.Cells[5].Text.ToString());
this.TextBox3.Text = MyDate.ToShortDateString();
this.TextBox4.Text = this.GridView1.SelectedRow.Cells[6].Text.ToString();
this.TextBox5.Text = this.GridView1.SelectedRow.Cells[7].Text.ToString();
this.TextBox6.Text = this.GridView1.SelectedRow.Cells[8].Text.ToString();
this.TextBox7.Text = this.GridView1.SelectedRow.Cells[9].Text.ToString();
MyDate = DateTime.Parse(this.GridView1.SelectedRow.Cells[10].Text.ToString());
this.TextBox8.Text = MyDate.ToShortDateString();
this.TextBox9.Text = this.GridView1.SelectedRow.Cells[11].Text.ToString();
this.TextBox10.Text = this.GridView1.SelectedRow.Cells[12].Text.ToString();
this.TextBox11.Text = this.GridView1.SelectedRow.Cells[13].Text.ToString();
this.TextBox12.Text = this.GridView1.SelectedRow.Cells[15].Text.ToString();
this.TextBox13.Text = this.GridView1.SelectedRow.Cells[16].Text.ToString();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -