博客來網路書店查詢

書名

博客來網路書店查詢

星期一, 7月 13, 2009

當FormView新增資料後,可以直接轉換到另外一個網頁

當FormView新增資料後,可以直接轉換到另外一個網頁
Protected Sub FormView1_ItemInserted(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.FormViewInsertedEventArgs)

Response.Redirect("gridview2.aspx")

End Sub
轉換到另外一個網頁後可由GridView1顯示最新一頁紀錄。請加上If Not Page.IsPostBack Then進行判斷,
這樣頁次才能順利切換。另外,請留意這語法不能放在Form_Load內。

Protected Sub GridView1_PreRender(ByVal sender As Object, ByVal e As System.EventArgs)

If Not Page.IsPostBack Then
GridView1.PageIndex = GridView1.PageCount - 1
End If

End Sub

沒有留言: