Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > .NET Framework > Forum > search ข้อมูล ค้นหาข้อมูลระหว่างวันที่และ ดรอปดาน์วลิส



 

search ข้อมูล ค้นหาข้อมูลระหว่างวันที่และ ดรอปดาน์วลิส

 



Topic : 046611



โพสกระทู้ ( 2 )
บทความ ( 0 )



สถานะออฟไลน์
Twitter Blogger



ต้องการค้นหาข้อมูลระหว่างวันที่ โดยที่ถ้าวันที่ช่องใดช่องหนึ่งว่าง ให้ใส่วันที่ให้ครบก่อน แล้วดึงข้อมูลวันที่ต้องการค้นหามาโชว์ใน gridview ถ้าใส่วันที่ ดรอปดาวน์ก็ให้โชว์เงื่อนไขตามนั้น แต่ถ้าไม่ใส่อะไรเลยทั้ง 3 ช่องให้ดึงข้อมูลมาโชว์ทั้งหมด

อันนี้ลองทำแล้วเลือกวันที่ แค่วันเดียวได้แต่ว่าเลือกมากกว่า 1 วันมันจะได้ข้อมูลของรหัสมาแต่ว่าวันที่เป็นวันเดียวกันหมด ไม่รู้ว่าผิดตรงไหน
คือมีข้อมูล 2 วัน วันที่ 1 และวันที่ 2 ถ้าเลือกวันที่ 1 และวันที่ 2 ผล ปัจจุบันเป็นแบบนี้ง่ะ
1. 1111 1/8/2553 0:00:00 760.00 0
2. 1112 1/8/2553 0:00:00 760.00 0
3. 444444 1/8/2553 0:00:00 760.00 0
4. 5555 1/8/2553 0:00:00 760.00 0

วันที่เป็นวันที่ 1 หมดเยย



void ShowData()
{

string sql = "Select productsupplier.*,productsupplierdt.* From productsupplier,productsupplierdt where productsupplier.Id(+) = productsupplierdt.ProductSupplierId Group By ProductSupplierId";

string strdate = Csql.Convert_dateCalendar(txtStartDate.Text);
string enddate = Csql.Convert_dateCalendar(txtendDate.Text);



if ((txtStartDate.Text != string.Empty) && (txtendDate.Text != string.Empty) && (ddlProduct.SelectedValue != "--กรุณาเลือก--"))
{

dtP = Csql.SELECT_All("productsupplier where (DateBuy between '" + strdate + "'AND'" + enddate + "') AND SupplierId='" + ddlProduct.SelectedValue + "'");

}
else if ((txtStartDate.Text != string.Empty) && (txtendDate.Text != string.Empty))
{
dtP = Csql.SELECT_All("productsupplier WHERE DateBuy between '" + strdate + "'AND'" + enddate + "'");

}
else if ((txtStartDate.Text == string.Empty) && (txtendDate.Text == string.Empty))
{
dtP = Csql.SELECT_All("productsupplier");
}

else
{
string str = "<script language='javascript'>alert('กรุณาใส่ช่วงวันที่');window.focus ();</script>";
Page.RegisterStartupScript("onclick", str);

return;
}

if (dtP.Rows.Count > 0)
{

GV1.DataSource = dtP;
GV1.DataBind();
}
else
{
//DataTable dt = new DataTable();
//dt.Columns.Add(new DataColumn("Id", typeof(int)));
//DataRow dr = dt.NewRow();
//dt.Rows.Add(dr);
//GV1.DataSource = dt;
GV1.DataSource = null;
GV1.DataBind();
}
}

protected void GV1_RowCreated(object sender, GridViewRowEventArgs e )
{
string strdate = Csql.Convert_dateCalendar(txtStartDate.Text);
string enddate = Csql.Convert_dateCalendar(txtendDate.Text);

if (e.Row.RowType == DataControlRowType.DataRow)
{
HyperLink data1 = (HyperLink)e.Row.FindControl("data1");
HyperLink data2 = (HyperLink)e.Row.FindControl("data2");
HyperLink data3 = (HyperLink)e.Row.FindControl("data3");
HyperLink data4 = (HyperLink)e.Row.FindControl("data4");



string sql = "Select productsupplier.*,productsupplierdt.* From productsupplier,productsupplierdt where (productsupplier.DateBuy between '" + strdate + "' AND '" + enddate + "') AND productsupplier.Id = productsupplierdt.ProductSupplierId Group By ProductSupplierId";


DataTable dt = Csql.ExecuteReader(sql);
//Response.Write(sql);
//Response.End();
if (dt.Rows.Count > 0)
{
data1.Text = dt.Rows[e.Row.DataItemIndex]["ReceiveCode"].ToString();
data1.NavigateUrl = "Buy.aspx?actions=Edit&uid=" + dt.Rows[e.Row.DataItemIndex]["SupplierId"].ToString();
data2.Text = dt.Rows[0]["DateBuy"].ToString();
data3.Text = dt.Rows[0]["TotalPrice"].ToString();
data4.Text = dt.Rows[0]["Status"].ToString();

}
}
runid = (e.Row.DataItemIndex + 1) + ".";
}



Tag : ASP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-08-05 19:38:38 By : party View : 1344 Reply : 4
 

 

No. 1



โพสกระทู้ ( 108 )
บทความ ( 0 )



สถานะออฟไลน์


ขอเรียงก่อน เด๋วมาตอบค่ะ

Code (C#)
void ShowData()
{

string sql = "Select productsupplier.*,productsupplierdt.* From productsupplier,productsupplierdt where productsupplier.Id(+) = productsupplierdt.ProductSupplierId Group By ProductSupplierId";

string strdate = Csql.Convert_dateCalendar(txtStartDate.Text);
string enddate = Csql.Convert_dateCalendar(txtendDate.Text);



if ((txtStartDate.Text != string.Empty) && (txtendDate.Text != string.Empty) && (ddlProduct.SelectedValue != "--กรุณาเลือก--"))
{

dtP = Csql.SELECT_All("productsupplier where (DateBuy between '" + strdate + "'AND'" + enddate + "') AND SupplierId='" + ddlProduct.SelectedValue + "'");

}
else if ((txtStartDate.Text != string.Empty) && (txtendDate.Text != string.Empty))
{
dtP = Csql.SELECT_All("productsupplier WHERE DateBuy between '" + strdate + "'AND'" + enddate + "'");

}
else if ((txtStartDate.Text == string.Empty) && (txtendDate.Text == string.Empty))
{
dtP = Csql.SELECT_All("productsupplier");
}

else
{
string str = "<script language='javascript'>alert('กรุณาใส่ช่วงวันที่');window.focus ();</script>";
Page.RegisterStartupScript("onclick", str);

return;
}

if (dtP.Rows.Count > 0)
{

GV1.DataSource = dtP;
GV1.DataBind();
}
else
{
//DataTable dt = new DataTable();
//dt.Columns.Add(new DataColumn("Id", typeof(int)));
//DataRow dr = dt.NewRow();
//dt.Rows.Add(dr);
//GV1.DataSource = dt;
GV1.DataSource = null;
GV1.DataBind();
}
}

protected void GV1_RowCreated(object sender, GridViewRowEventArgs e )
{
string strdate = Csql.Convert_dateCalendar(txtStartDate.Text);
string enddate = Csql.Convert_dateCalendar(txtendDate.Text);

if (e.Row.RowType == DataControlRowType.DataRow)
{
HyperLink data1 = (HyperLink)e.Row.FindControl("data1");
HyperLink data2 = (HyperLink)e.Row.FindControl("data2");
HyperLink data3 = (HyperLink)e.Row.FindControl("data3");
HyperLink data4 = (HyperLink)e.Row.FindControl("data4");



string sql = "Select productsupplier.*,productsupplierdt.* From productsupplier,productsupplierdt where (productsupplier.DateBuy between '" + strdate + "' AND '" + enddate + "') AND productsupplier.Id = productsupplierdt.ProductSupplierId Group By ProductSupplierId";


DataTable dt = Csql.ExecuteReader(sql);
//Response.Write(sql);
//Response.End();
if (dt.Rows.Count > 0)
{
data1.Text = dt.Rows[e.Row.DataItemIndex]["ReceiveCode"].ToString();
data1.NavigateUrl = "Buy.aspx?actions=Edit&uid=" + dt.Rows[e.Row.DataItemIndex]["SupplierId"].ToString();
data2.Text = dt.Rows[0]["DateBuy"].ToString();
data3.Text = dt.Rows[0]["TotalPrice"].ToString();
data4.Text = dt.Rows[0]["Status"].ToString();

}
}
runid = (e.Row.DataItemIndex + 1) + ".";
}








แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-05 23:16:00 By : njnight
 


 

No. 2



โพสกระทู้ ( 108 )
บทความ ( 0 )



สถานะออฟไลน์


Code (C#)
string strdate = Csql.Convert_dateCalendar(txtStartDate.Text + " 00:00:00");
string enddate = Csql.Convert_dateCalendar(txtendDate.Text + " 23:59:00");


ตอบถูกประเด็นหรือป่าวคะ ^_^
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-05 23:20:24 By : njnight
 

 

No. 3



โพสกระทู้ ( 108 )
บทความ ( 0 )



สถานะออฟไลน์


อันนี้ที่เราใช้อยู่อ่ะค่ะ เราไม่ค่อยใช้ Between เท่าใหร่
Code (C#)
  string Qstr_select = " SELECT * FROM issue_table ";
                Qstr_select += " where ";
                if (txtStartDate.Text.Trim() != "" && txtEndDate.Text.Trim() != "")
                {
                    Qstr_select += " recorddate >='@Date_Begin' and recorddate <='@Date_End' ";
                    Qstr_select = Qstr_select.Replace("@Date_Begin", txtStartDate.Text + " 00:00:00");
                    Qstr_select = Qstr_select.Replace("@Date_End", txtEndDate.Text + " 23:59:00");
                }

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-05 23:23:04 By : njnight
 


 

No. 4



โพสกระทู้ ( 2 )
บทความ ( 0 )



สถานะออฟไลน์
Twitter Blogger

ขอบคุณทุก ๆ คำตอบคร้าบบบบทำได้แว้ว เย้ ๆ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-06 00:42:43 By : party
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : search ข้อมูล ค้นหาข้อมูลระหว่างวันที่และ ดรอปดาน์วลิส
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่