|
|
|
กดปุ่ม update ข้อมูลถูกแก้ไขแล้วแต่Gridviewไม่ refresh ต้องกด f5 1 ครั้ง ข้อมูลในGridจึงจะตรงกับข้อมูลจริง ทั้งที่ BindData() แล้ว ต้องทำยังไงคะ |
|
|
|
|
|
|
|
หลังจากที่ Update เสร็จแล้วคุณน่าจะต้องเรียก Sub สำหรับ BindData อีกรอบน่ะครับ
|
|
|
|
|
Date :
2011-08-18 13:53:11 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนที่หน้า "Update_D.aspx"
sql="update ........."
if update ได้ then
Call BindData()
Response.Redirect("Add_D.aspx")
else
Call BindData()
Response.Redirect("Update_D.aspx")
end if
|
|
|
|
|
Date :
2011-08-18 14:13:50 |
By :
por_punggo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (VB.NET)
Response.Cache.SetCacheability(HttpCacheability.NoCache)
|
|
|
|
|
Date :
2011-08-18 23:08:41 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูอีกตัวครับ
Code (VB.NET)
HttpContext.Current.Response.Headers.Add("Cache-Control", "no-cache")
|
|
|
|
|
Date :
2011-08-18 23:10:06 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|