0
我的情況是,如何使空datatbale出現在aspx頁面中?
我創建了一個頁面,並通過應用模板和GridView在Updatepanel.Now我有一個頁腳模板添加並插入數據database.But它不出現在那裏時做了一些改動數據表中沒有數據。
我需要在頁面加載事件期間顯示那些footertemplate,當我添加它時必須刷新頁面才能顯示數據。請對此
頁面加載事件幫助:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load, UpdatePanel1.Load
If Not IsPostBack Then
BindData()
End If
End Sub
Private Sub BindData()
Dim strQuery As String = "select MembershipName,FamilyMember,MemberName,Dateofbirth from IOMFamilyDetails "
Dim cmd As New SqlCommand(strQuery)
GridView1.DataSource = GetData(cmd)
GridView1.DataBind()
End Sub