Click here to Skip to main content
15,888,461 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Form insertion Pin
hameedsabacode16-Aug-10 21:24
hameedsabacode16-Aug-10 21:24 
QuestionNinjet and DI Pin
future383916-Aug-10 16:08
future383916-Aug-10 16:08 
QuestionProblem showing image in datagrid Pin
Dhyanga16-Aug-10 9:32
Dhyanga16-Aug-10 9:32 
AnswerRe: Problem showing image in datagrid Pin
m@dhu16-Aug-10 18:34
m@dhu16-Aug-10 18:34 
QuestionDatabinding ASP.NET gridview using multithreading Pin
afsal qureshi16-Aug-10 5:28
afsal qureshi16-Aug-10 5:28 
AnswerRe: Databinding ASP.NET gridview using multithreading Pin
Ennis Ray Lynch, Jr.16-Aug-10 6:11
Ennis Ray Lynch, Jr.16-Aug-10 6:11 
GeneralRe: Databinding ASP.NET gridview using multithreading Pin
afsal qureshi16-Aug-10 6:21
afsal qureshi16-Aug-10 6:21 
GeneralRe: Databinding ASP.NET gridview using multithreading Pin
Fayu20-Aug-10 10:07
Fayu20-Aug-10 10:07 
Multithreading may not be a solution here. The queries you are running dont seem very efficient. If these queries are taking one minute to run, than you might have to rethink what you are attempting.

Here are a few suggestions:
1) Make sure your tables/views are indexed. If they are make sure your indexes are not fragmented. That will cause your queries to take longer than they should.
2) If you are using SELECT * and dont need all those columns, updatethe query to selec the columns you actually need.
3) Use stored procedures instead of inline queries. Stored procedures have an advantage because their statistics/execution plans are stored for future executions. This may increase the time it takes to run your query.
4) Make sure you dont have crazy joins. These are usually a major problem with complex, slow running queries.
5) If you are returing many many many rows, you may want to consider server side paging.

Hope this helps.
QuestionDynamic table Onclick Pin
Morgs Morgan15-Aug-10 23:05
Morgs Morgan15-Aug-10 23:05 
AnswerRe: Dynamic table Onclick Pin
Arun Jacob15-Aug-10 23:21
Arun Jacob15-Aug-10 23:21 
GeneralRe: Dynamic table Onclick Pin
Morgs Morgan15-Aug-10 23:28
Morgs Morgan15-Aug-10 23:28 
AnswerRe: Dynamic table Onclick Pin
Arun Jacob16-Aug-10 0:13
Arun Jacob16-Aug-10 0:13 
GeneralRe: Dynamic table Onclick Pin
Morgs Morgan16-Aug-10 5:44
Morgs Morgan16-Aug-10 5:44 
AnswerRe: Dynamic table Onclick [modified] Pin
raju melveetilpurayil16-Aug-10 0:40
professionalraju melveetilpurayil16-Aug-10 0:40 
GeneralRe: Dynamic table Onclick Pin
Morgs Morgan16-Aug-10 5:43
Morgs Morgan16-Aug-10 5:43 
QuestionPage Load [modified] Pin
moein.serpico15-Aug-10 20:08
moein.serpico15-Aug-10 20:08 
AnswerRe: Page Load Pin
Brij15-Aug-10 20:34
mentorBrij15-Aug-10 20:34 
QuestionIIS Restart issue Pin
Amit Patel198515-Aug-10 19:06
Amit Patel198515-Aug-10 19:06 
AnswerRe: IIS Restart issue Pin
Brij15-Aug-10 21:24
mentorBrij15-Aug-10 21:24 
GeneralRe: IIS Restart issue Pin
Amit Patel198515-Aug-10 21:52
Amit Patel198515-Aug-10 21:52 
GeneralRe: IIS Restart issue Pin
Brij15-Aug-10 23:20
mentorBrij15-Aug-10 23:20 
QuestionServer Error in '/' Application. [modified] Pin
moein.serpico13-Aug-10 21:34
moein.serpico13-Aug-10 21:34 
AnswerRe: Server Error in '/' Application. Pin
Keith Barrow13-Aug-10 23:57
professionalKeith Barrow13-Aug-10 23:57 
QuestionFtp size Pin
moein.serpico13-Aug-10 20:54
moein.serpico13-Aug-10 20:54 
AnswerRe: Ftp size Pin
T M Gray16-Aug-10 6:37
T M Gray16-Aug-10 6:37 

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.