Click here to Skip to main content
15,896,278 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: How to execute sql script from asp.net, need help Pin
dream_liner_7e78-Nov-08 5:52
dream_liner_7e78-Nov-08 5:52 
AnswerRe: How to execute sql script from asp.net, need help Pin
Ashfield9-Nov-08 20:16
Ashfield9-Nov-08 20:16 
GeneralRe: How to execute sql script from asp.net, need help Pin
dream_liner_7e79-Nov-08 22:37
dream_liner_7e79-Nov-08 22:37 
QuestionApp Domains and logged in users Pin
Soumini Ramakrishnan6-Nov-08 4:45
Soumini Ramakrishnan6-Nov-08 4:45 
Questionreasons for slow loading page Pin
eyeseetee6-Nov-08 2:54
eyeseetee6-Nov-08 2:54 
GeneralRe: reasons for slow loading page Pin
cyber-drugs6-Nov-08 3:46
cyber-drugs6-Nov-08 3:46 
GeneralRe: reasons for slow loading page Pin
eyeseetee6-Nov-08 3:52
eyeseetee6-Nov-08 3:52 
GeneralRe: reasons for slow loading page Pin
cyber-drugs6-Nov-08 4:07
cyber-drugs6-Nov-08 4:07 
ICT,

There is no SQL Server 2003, there is 2000 and 2005, so can I presume you are on 2000? If so, that would be why your page is slow, or at least my presumption without in deptch analysis!

SQL Server 2000 cannot handle "real paging", it gives you the effect of paging, when in fact it pulls down every single record from your query, and then when all the data from the database hits the .NET web server, this will cut up the data and make it appear as if you are getting paging.

In SQL Server 2005, they added the feature "Row Numbering", which allows you to get true paging, so when you ask for the first 100 records in a table, starting from record 101, it gives you just 100 records, where-as 2000 would of given you every single record.

The way to confirm this, if you run query analyser and run a trace on the database being used, and find the query being fired to the database by your GridView. After you have this query, try running it manually in query analyser. If this query runs as slow as your page takes to load, we have identified your problem. Smile | :)

The easiest solution would be to upgrade to SQL Server 2005 or above.
GeneralRe: reasons for slow loading page Pin
eyeseetee6-Nov-08 5:15
eyeseetee6-Nov-08 5:15 
AnswerRe: reasons for slow loading page Pin
whatUrunning.com6-Nov-08 3:52
whatUrunning.com6-Nov-08 3:52 
GeneralRe: reasons for slow loading page Pin
eyeseetee6-Nov-08 3:53
eyeseetee6-Nov-08 3:53 
GeneralRe: reasons for slow loading page Pin
whatUrunning.com6-Nov-08 4:26
whatUrunning.com6-Nov-08 4:26 
Questionhow do i run activexObject on my machine Pin
koolprasad20036-Nov-08 1:26
professionalkoolprasad20036-Nov-08 1:26 
AnswerRe: how do i run activexObject on my machine Pin
Ashfield6-Nov-08 1:51
Ashfield6-Nov-08 1:51 
QuestionUnrecognized attribute name cookiename Pin
Member 43580266-Nov-08 0:08
Member 43580266-Nov-08 0:08 
AnswerRe: Unrecognized attribute name cookiename Pin
Sandeep Akhare6-Nov-08 19:30
Sandeep Akhare6-Nov-08 19:30 
QuestionRunning an asp.net application with the Japanesse language Pin
Member 19468575-Nov-08 23:41
Member 19468575-Nov-08 23:41 
AnswerRe: Running an asp.net application with the Japanesse language Pin
Paddy Boyd6-Nov-08 0:31
Paddy Boyd6-Nov-08 0:31 
AnswerRe: Running an asp.net application with the Japanesse language Pin
Member 19468576-Nov-08 2:10
Member 19468576-Nov-08 2:10 
GeneralRe: Running an asp.net application with the Japanesse language Pin
Paddy Boyd6-Nov-08 2:21
Paddy Boyd6-Nov-08 2:21 
QuestionCursor Location in Freetextbox Pin
wajans5-Nov-08 23:24
wajans5-Nov-08 23:24 
AnswerRe: Cursor Location in Freetextbox Pin
wajans5-Nov-08 23:26
wajans5-Nov-08 23:26 
GeneralRe: Cursor Location in Freetextbox Pin
Qasim198425-Jun-09 19:46
professionalQasim198425-Jun-09 19:46 
Questionmaking http requests in parallel Pin
needhi_p5-Nov-08 23:08
needhi_p5-Nov-08 23:08 
QuestionFunction keys Pin
sram155-Nov-08 22:56
sram155-Nov-08 22:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.