HOME > .NET Framework > Forum > ASP.Net หาก User กรอกข้อมูลที่เป็น คอมโบ Web page กัน แล้วเผลอปิดไป จะทำยังไง ให้เวลาเราเปิดแล้วใส่รหัสเดิมไป Userจะสามารถทำต่อได้จากของเดิมที่เผลอปิดไปอ่ะครับ
ASP.Net หาก User กรอกข้อมูลที่เป็น คอมโบ Web page กัน แล้วเผลอปิดไป จะทำยังไง ให้เวลาเราเปิดแล้วใส่รหัสเดิมไป Userจะสามารถทำต่อได้จากของเดิมที่เผลอปิดไปอ่ะครับ
USE [SPersonnel]
GO
/****** Object: StoredProcedure [dbo].[sps_GetPersonDetail] Script Date: 09/02/2013 09:48:56 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER proc [dbo].[sps_GetPersonDetail]
(
@ID_Pers nvarchar(6)
)
AS
Select * from dbo.Personnel
where ID_Pers=@ID_Pers
Select * from dbo.SP_Work
where ID_Pers=@ID_Pers
Select * from dbo.SP_Sick
Where ID_Pers=@ID_Pers
Select * from dbo.Sick_even
Where ID_Pers=@ID_Pers
Select * from dbo.Family_s
Where ID_Pers=@ID_Pers
Select * from dbo.Cigarette_s
Where ID_Pers=@ID_Pers
แล้วก็มาเขียน GetData โดยใช้คำสั่ง DataSet โดยการ Create Class ขึ้นมา 1 Class
public DataSet GetData()
{
DataSet Ds = new DataSet();
SqlConnection conn = new SqlConnection();
{
conn.ConnectionString = ConfigurationManager
.ConnectionStrings["SPersonnelConnectionString"].ConnectionString;
SqlCommand cmd = new SqlCommand();
{
cmd.CommandText = TSql;
cmd.CommandType = CommandType.Text;
cmd.Connection = conn;
conn.Open();
SqlDataAdapter da = new SqlDataAdapter();
{
da.SelectCommand = cmd;
da.Fill(Ds);
}
conn.Close();
conn.Dispose();
}
}
return Ds;
}