i noticed a lot of timeout issues in my web app and am wondering if there's a better way to get the data. the basic code for pulling the data is
<font face="Georgia">
conn.Open()
Dim dgTable As New DataTable
dgTable.Load(myCmd.ExecuteReader(CommandBehavior.C loseConnection))
dg_AddressData.DataSource = dgTable
dg_AddressData.DataBind()
</font face=georgia>
this is in a development enviornment and my connection string to SQL Server is explicit (that is, written out in code rather than referenced from web.config) and uses new SqlConnection. the connection works off a stored proc. when i run the same query directly in SQL Server Management Studio, it runs quickly, but ASP.NET is elderly and dim.
any ideas?
TIA



