I have the following in my web.config file.
<appSettings>
</appSettings>
I want to be able to run code like the following in my application...
cmd = New SqlCommand(sqlStr, conn)
cmd.CommandTimeout = Convert.ToInt32(Configurat
ionManager
.AppSettin
gs("Connec
tionTimeou
t"))
cmd.Connection.Open()
cmd.ExecuteNonQuery()
how do I enter this into the web.config file correctly for say, 90 seconds?
P.S. - ASP.NET 3.5
Start Free Trial