Nov 8, 2002 #1 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?
I am trying to get the datgrid to update i tried multiple types of update commands none have worked yet any clues?
Nov 10, 2002 #2 wayko Active member Joined Nov 4, 2002 Messages 27 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 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
Nov 10, 2002 #3 Derek Stone Exalted One Joined Nov 17, 2002 Messages 1,878 Location Rhode Island User Rank *Expert* Make sure youre refeshing a non-cached version of the page.
Nov 10, 2002 #4 wayko Active member Joined Nov 4, 2002 Messages 27 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?
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?
Nov 10, 2002 #5 Derek Stone Exalted One Joined Nov 17, 2002 Messages 1,878 Location Rhode Island User Rank *Expert* 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" %>
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" %>