| Thread | Last Post | Replies |
|
| Please, Please help!! I am stuck! | 29 Nov 2007 15:01 GMT | 1 |
I have written lots of code and also tested with Visual Studio WEB 2005 but i still dont get it... This is what i cant get to work: 1. Connect to one datasource
|
| {0:c} causes input string not in correct format exception | 22 Nov 2007 04:34 GMT | 4 |
I've seen many posts complaining about this, but none with a solution..... I have a GridView that is bound to a SQLDataSource and working just fine, except that when I change the DataFormatString on one of my columns that is displaying a smallmoney value from SQL (converted to ...
|
| Option Strict On disallows late binding | 21 Nov 2007 01:15 GMT | 3 |
I always get the late binding error with the following method. Is there anyway around this without turning Option Strict Off? Private Sub grdAccounts_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles grdAccounts.ItemDataBound ...
|
| Rendering a GridView | 20 Nov 2007 16:24 GMT | 2 |
I have a GridView that I want to return as an Excel spreadsheet. I am using vb.net in a web application. The following code works, with the exception of special characters. dt = MyDataSet.Tables(0)
|
| Updating SelectedIndex after delete | 19 Nov 2007 12:17 GMT | 3 |
I have a delete button on my page which deletes the selected row in a gridview. After the deletion the selected index gets reset to -1. How can I keep the same selected index?
|
| Modfying bound data in a GridView? | 19 Nov 2007 01:48 GMT | 2 |
In ASP .NET 1.x, I could have a bound column in a DataGrid and still "massage" that data so slightly different data was presented in the DataGrid (using DataBinder.eval and a custom databinding expression). Can I do something similar with a DataGridView? I want to be able to take ...
|
| Making an entire column visible/not visible. | 17 Nov 2007 18:43 GMT | 4 |
How can I programatically change whether a column is visible/not visible in a DataGrid? TIA - Jeff.
|
| Programattically setting gridview to edit mode | 07 Nov 2007 15:25 GMT | 3 |
I have a button on my form which is enabled when the user selects a record in the datagrid (I do not want an edit button for each record in the grid). How can I force the datagrid into edit mode when the user clicks on this button?
|
| Reload/refresh data in datagrid | 05 Nov 2007 21:43 GMT | 7 |
When some control in a page modifies the data displayed in a datagrid (through an sql update query, of course), how do I refresh the datagrid? Binding the datagrid doesn't seem to work. Re-binding the datasource doesn't work. Binding the datasources also doesn't help.
|