Can we set the page loading time in web.config??Is it psble?
Any body can help..I'm cnfusing about this question ..Can we set the page loading time in web.config???
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Joginder BangerPosted Dec 5, 2014, 5:33 AM
No option are available in .net framework. Move you another option:-
priya AvanigaddaPosted Dec 5, 2014, 5:16 AM
Joginder BangerPosted Dec 5, 2014, 5:12 AM
hi Priya you can do it
Configuration myConfiguration = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~");
myConfiguration.ConnectionStrings.ConnectionStrings("myDatabaseName").ConnectionString = txtConnectionString.Text;
myConfiguration.AppSettings.Settings.Item("myKey").Value = txtmyKey.Text;
myConfiguration.Save();
priya AvanigaddaPosted Dec 5, 2014, 4:42 AM
Manish Kumar ChoudharyPosted Dec 5, 2014, 4:40 AM
priya AvanigaddaPosted Dec 5, 2014, 4:32 AM
Manish Kumar ChoudharyPosted Dec 5, 2014, 4:30 AM
we cannot make loading time faster we can delay it by simply store Apps seating value and access that that value to delay the execution.
Go through following link
http://www.dotnetperls.com/trace