I have a web form that upon visiting it (on Sub Page_Load) it dispalys some data-bound datagrids. I also have a textbox to add some notes towards the bottom and a Submit button attached to it.
This application works fine except when the user submits their Notes via the textbox, I would like it to automatically refresh the page so it can be displayed on the Datagrid with the pertinent information.
My .aspx page has the following format:
Can someone please assist me?
This application works fine except when the user submits their Notes via the textbox, I would like it to automatically refresh the page so it can be displayed on the Datagrid with the pertinent information.
My .aspx page has the following format:
Code:
Sub Page_Load(Sender As Object, E As EventArgs)
If Not IsPostBack Then
...code...
End If
End Sub
Sub btnSubmit_Click(sender As Object, e As ImageClickEventArgs)
...code...
End Sub
Can someone please assist me?