update datagrid

wayko

Active member
Joined
Nov 4, 2002
Messages
27
I am trying to get the datgrid to update i tried multiple types of update commands
none have worked yet
any clues?
 
DataGrid Update

Does anyone lnow the correct coding to update a datagrid in vb.net?

i tried
try
DaraGrid1.....

i tried
dim strName = Ctype(e.item.Cells(2).Controls(0), textbox).text

i tried them all

i look at a c# version
tried the command of ctype
it worked there

i tried making a windows datagrid
did the try command and it worked

but none of them worked for the web datagrid for vb.net

please help
 
datagrid

Im sorry i am very very new to this
how do i go about that?
also can you show me the correct coding for it?
 
Add a button/link which the user can click that refreshes the page.
Code:
<a href="thisPage.aspx">Refresh</a>
Also make sure to add this to the top of your ASP.NET code:
Code:
<%@ OutputCache Duration="0" Location="Any" %>
 
Back
Top