Search Results

1
vote

Who actually uses DataGrid/GridView/FormVIew/etc in production apps?

For anything long term I would try to avoid datagrid/gridview, it sometimes becomes too hacky making it do exactly what you want, after a certain number of these tweaks you start to realise its not …
3
votes

ASP.net application can’t connect to sql server 2005 database.

By default IIS will try to use an ASPNET account which needs to be granted access to SQL Server. I don't have a setup anymore to describe this but the following link offers a couple of solutions: …
0
votes

Getting an object back from my GridView rows

If you want to hold onto an object like this its easiest to use the viewstate, although you will be duplicating the data but for a small object it should be ok. ViewState.Add("Email …
0
votes

I need an alternative to server based Reporting Services

Have you looked at the client version of reporting built into Visual Studio? They are almost identical to Reporting services reports. The structure of ssrs2005 reports are identical to vs2 …