 |
|
ช่วยทีครับเรื่องวนloop จากฐานข้อมูลเพื่อมาแสดงใน According ครับ |
|
 |
|
|
 |
 |
|
ประมาณว่าผมจะทำ according โดยดึงมาจากฐานข้อมูล โดยเรียงปีล่าสุดลงไป
โดยตอนนี้ผม วน loop เอาปีมาแล้ว เหลือแต่ loop ข้างใน ที่ต้องดึงมาจากฐานข้อมูล
ปี53
1
2
3
..
ปี52
1
2
3
..
ปี51
1
2
3
..
ส่วนนี้ code ครับ
{head}Code (C#){/head}
{cs}
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;
namespace EHR
[
public partial class newaccord : System.Web.UI.Page
[
protected void Page_Load(object sender, EventArgs e)
[
LoadAccordion();
]
protected void LoadAccordion()
[
Accordion1.SelectedIndex = -1;
int cloop,maxyear, minyear;
System.Data.SqlClient.SqlConnection objConn;
System.Data.SqlClient.SqlCommand objCmd;
String strConnString, strSQL;
strConnString = "Serverxxx.xxx.x.xx;UID=sa;PASSWORD=*******;database=HR;Max Pool Size=400;Connect Timeout=600;";
objConn = new System.Data.SqlClient.SqlConnection(strConnString);
objConn.Open();
strSQL = "select convert(int,maxyear) as maxyear,convert(int,minyear) as minyear,convert(int,maxyear)-convert(int,minyear) as cloop from(select min(distinct substring(train_date,7,4)) as minyear,max(distinct substring(train_date,7,4)) as maxyear from dbo.hris_train_masterdata where pid=(select pid from dbo.hris_employee_data where code='165000020') ) as a";
System.Data.SqlClient.SqlDataReader dtReader;
objCmd = new System.Data.SqlClient.SqlCommand(strSQL, objConn);
dtReader = objCmd.ExecuteReader();
if (dtReader.HasRows)
[
if (dtReader.Read())
[
maxyear = (int)dtReader["maxyear"];
minyear = (int)dtReader["minyear"];
cloop = (int)dtReader["cloop"];
if (!Page.IsPostBack)
[
for (int i = 1; i <= cloop; i++)
[
AjaxControlToolkit.AccordionPane ap = new AjaxControlToolkit.AccordionPane();
ap.ID = "AP_" + i.ToString();
string hlabel = "Header #" + i.ToString();
ITemplate ITcontent = new GenericTemplateImplementation(
delegate(Control container)
[
AjaxControlToolkit.Accordion ac = new AjaxControlToolkit.Accordion();
ac.ID = "ACCC_" + i.ToString();
ac.HeaderCssClass = "accordionHeader";
ac.HeaderSelectedCssClass = "accordionHeaderSelected";
ac.ContentCssClass = "accordionContent";
ac.SelectedIndex = -1;
for (int x = 0; x < cloop; x++)
[
int cyears = maxyear - x;
/*
วนlpop ในส่วนนี้ครับ
*/
AjaxControlToolkit.AccordionPane apx = new AjaxControlToolkit.AccordionPane();
apx.ID = "APx_" + x.ToString();
string hxlabel = "ปี" + cyears.ToString();
ITemplate ITxheader = new GenericTemplateImplementation(
delegate(Control container2)
[
Label xheaderLabel = new Label();
xheaderLabel.ID = "HLx_" + x.ToString();
xheaderLabel.Text = hxlabel;
container2.Controls.Add(xheaderLabel);
]
);
///////////////////
/* แล้วนำมาใส่ DataGrid ตรงส่วนนี้นะครับ
*/
string xcLabel = "<table border=1><tr><td>หลักสูตร</td><td>วันที่</td><td>ประเภท</td></tr><tr><td>7ส กับ คุณภาพงาน</td><td>16/07/53</td><td>หลักสูตรมาตราฐาน</td></tr></table>" + x;
ITemplate ITxcontent = new GenericTemplateImplementation(
delegate(Control container3)
[
Label xcontentLabel = new Label();
xcontentLabel.ID = "CLx_" + x.ToString();
xcontentLabel.Text = xcLabel;
container3.Controls.Add(xcontentLabel);
]
);
apx.Header = ITxheader;
apx.Content = ITxcontent;
ac.Panes.Add(apx);
]
ac.SelectedIndex = -1;
container.Controls.Add(ac);
]
);
ap.Content = ITcontent;
Accordion1.Panes.Add(ap);
]
]
]
Response.Write(dtReader.FieldCount);
]
else
[
Response.Write("nodata");
]
objCmd = null;
objConn.Close();
objConn.Close();
objConn = null;
]
]
]
{/cs}
ขอบคุณครับ
Tag : .NET, C#
|
ประวัติการแก้ไข 2010-08-11 11:41:55
|
 |
 |
 |
 |
Date :
2010-08-11 09:25:46 |
By :
kmuttzid |
View :
1172 |
Reply :
5 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่ขอตอบ เพราะไม่ใส่ tag c# ถือว่าจงใจทำร้ายสายตา
|
 |
 |
 |
 |
Date :
2010-08-11 09:44:16 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอโทษด้วยครับ ผมมือใหม่หัดโพส ยังไม่เคยโพสมาก่อน ขออภัยอีกครั้ง
|
 |
 |
 |
 |
Date :
2010-08-11 10:47:11 |
By :
kmuttzid |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เอาอันนี้ไปใส่ครับ {head}Code (C#){/head}
{cs}
โค๊ดใส่ตรงนี้ครับ
{/cs}
เปลี่ยนเคืร่องหมายจาก { } เป็น [ ]
|
ประวัติการแก้ไข 2010-08-11 11:31:10
 |
 |
 |
 |
Date :
2010-08-11 11:29:31 |
By :
tongspy |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณมากครับ เปลี่ยนอย่างด้านบนใช่ไหมครับ
|
 |
 |
 |
 |
Date :
2010-08-11 11:43:00 |
By :
kmuttzid |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
-_-" ไม่ได้แก้ให้แค่ใส่ tag เฉยๆ
Code (C#)
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;
namespace EHR
{
public partial class newaccord : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
LoadAccordion();
}
protected void LoadAccordion()
{
Accordion1.SelectedIndex = -1;
int cloop,maxyear, minyear;
System.Data.SqlClient.SqlConnection objConn;
System.Data.SqlClient.SqlCommand objCmd;
String strConnString, strSQL;
strConnString = "Serverxxx.xxx.x.xx;UID=sa;PASSWORD=*******;database=HR;Max Pool Size=400;Connect Timeout=600;";
objConn = new System.Data.SqlClient.SqlConnection(strConnString);
objConn.Open();
strSQL = "select convert(int,maxyear) as maxyear,convert(int,minyear) as minyear,convert(int,maxyear)-convert(int,minyear) as cloop from(select min(distinct substring(train_date,7,4)) as minyear,max(distinct substring(train_date,7,4)) as maxyear from dbo.hris_train_masterdata where pid=(select pid from dbo.hris_employee_data where code='165000020') ) as a";
System.Data.SqlClient.SqlDataReader dtReader;
objCmd = new System.Data.SqlClient.SqlCommand(strSQL, objConn);
dtReader = objCmd.ExecuteReader();
if (dtReader.HasRows)
{
if (dtReader.Read())
{
maxyear = (int)dtReader["maxyear"];
minyear = (int)dtReader["minyear"];
cloop = (int)dtReader["cloop"];
if (!Page.IsPostBack)
{
for (int i = 1; i <= cloop; i++)
{
AjaxControlToolkit.AccordionPane ap = new AjaxControlToolkit.AccordionPane();
ap.ID = "AP_" + i.ToString();
string hlabel = "Header #" + i.ToString();
ITemplate ITcontent = new GenericTemplateImplementation(
delegate(Control container)
{
AjaxControlToolkit.Accordion ac = new AjaxControlToolkit.Accordion();
ac.ID = "ACCC_" + i.ToString();
ac.HeaderCssClass = "accordionHeader";
ac.HeaderSelectedCssClass = "accordionHeaderSelected";
ac.ContentCssClass = "accordionContent";
ac.SelectedIndex = -1;
for (int x = 0; x < cloop; x++)
{
int cyears = maxyear - x;
/*
วนlpop ในส่วนนี้ครับ
*/
AjaxControlToolkit.AccordionPane apx = new AjaxControlToolkit.AccordionPane();
apx.ID = "APx_" + x.ToString();
string hxlabel = "ปี" + cyears.ToString();
ITemplate ITxheader = new GenericTemplateImplementation(
delegate(Control container2)
{
Label xheaderLabel = new Label();
xheaderLabel.ID = "HLx_" + x.ToString();
xheaderLabel.Text = hxlabel;
container2.Controls.Add(xheaderLabel);
}
);
///////////////////
/* แล้วนำมาใส่ DataGrid ตรงส่วนนี้นะครับ
*/
string xcLabel = "<table border=1><tr><td>หลักสูตร</td><td>วันที่< /td><td>ประเภท</td></tr><tr><td>7ส กับ คุณภาพงาน</td><td>16/07/53</td><td>หลักสูตรมาตรา ฐาน</td></tr></table>" + x;
ITemplate ITxcontent = new GenericTemplateImplementation(
delegate(Control container3)
{
Label xcontentLabel = new Label();
xcontentLabel.ID = "CLx_" + x.ToString();
xcontentLabel.Text = xcLabel;
container3.Controls.Add(xcontentLabel);
}
);
apx.Header = ITxheader;
apx.Content = ITxcontent;
ac.Panes.Add(apx);
}
ac.SelectedIndex = -1;
container.Controls.Add(ac);
}
);
ap.Content = ITcontent;
Accordion1.Panes.Add(ap);
}
}
}
Response.Write(dtReader.FieldCount);
}
else
{
Response.Write("nodata");
}
objCmd = null;
objConn.Close();
objConn.Close();
objConn = null;
}
}
}
|
ประวัติการแก้ไข 2010-08-11 12:15:31 2010-08-11 12:18:02 2010-08-11 12:18:47
 |
 |
 |
 |
Date :
2010-08-11 12:13:57 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|