Advertisement

07.21.2008 at 07:00AM PDT, ID: 23581816
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.4

ASP page takes too long to display

Asked by WEBuilder in Active Server Pages (ASP)

Tags: ,

I have a page that display a listing of files. It is very standard: SQL select statement creates a record set, do/while loop goes through each record and displays the results via ASP on a web page.

The only problem is that the page takes forever to display - as much as 5 minutes. I've put in some debugging and I see that the SQL statement takes no time to execute, and the creation of the table takes almost no time. So why the big delay?

Any ideas what the problem could be?Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
<h1 align="center"><b><b><b><b>Audio Files</b></b></b></b></h1>
<% 
iCID=fncWB_ForceToInteger(request.querystring("CID"),-1)
iSID=fncWB_ForceToInteger(request.querystring("SID"),-1)
if iCID > 0 then
	strSQL = "SELECT AudioCategory from tblAudioCategories where AudioCategoryID = " & iCID
	set RSc = cnnData.execute(strSQL)
	strTitle = RSc("AudioCategory")
	strSQL = "SELECT tblAudio.*, tblRabbis.Title, tblRabbis.FirstName, tblRabbis.LastName, tblAudioCategories.AudioCategory "
	strSQL = strSQL & "FROM tblAudio INNER JOIN tblRabbis ON tblAudio.RabbiID = tblRabbis.RabbiID "
	strSQL = strSQL & "INNER JOIN tblAudioCategories ON tblAudio.AudioCategoryID = tblAudioCategories.AudioCategoryID "
	strSQL = strSQL & "where tblAudio.AudioCategoryID=" & iCID & " order by AudioDate desc"
	lShowCategory=FALSE
	lShowSpeaker=TRUE
elseif iSID > 0 then
	strSQL = "SELECT * from tblRabbis where RabbiID = " & iSID
	set RSc = cnnData.execute(strSQL)
	strTitle = RSc("Title") & " " & RSc("FirstName") & " " & Rsc("LastName")
	strSQL = "SELECT tblAudio.*, tblRabbis.Title, tblRabbis.FirstName, tblRabbis.LastName, tblAudioCategories.AudioCategory "
	strSQL = strSQL & "FROM tblAudio INNER JOIN tblRabbis ON tblAudio.RabbiID = tblRabbis.RabbiID "
	strSQL = strSQL & "INNER JOIN tblAudioCategories ON tblAudio.AudioCategoryID = tblAudioCategories.AudioCategoryID "
	strSQL = strSQL & "where tblRabbis.RabbiID =" & iSID & " order by AudioDate desc"
	lShowCategory=true
	lShowSpeaker=false
elseif iCID = -1 then 
	strTitle = "Lastest Files"
	strSQL = "SELECT top 5 tblAudio.*, tblRabbis.Title, tblRabbis.FirstName, tblRabbis.LastName, tblAudioCategories.AudioCategory "
	strSQL = strSQL & "FROM tblAudio INNER JOIN tblRabbis ON tblAudio.RabbiID = tblRabbis.RabbiID "
	strSQL = strSQL & "INNER JOIN tblAudioCategories ON tblAudio.AudioCategoryID = tblAudioCategories.AudioCategoryID "
	strSQL = strSQL & "order by AudioDate desc"
	lShowCategory=TRUE
	lShowSpeaker=TRUE
end if
Response.write "before " & now & "<br>"
set RSa=cnnData.execute(strSQL)
Response.write "after " & now & "<br>"
%>
<h2><% = strTitle %></h2>
<table ><tr><td><strong>Title</strong></td>
<% if lShowSpeaker then %>
	<td><strong>Speaker</strong></td>
<% end if %>
<td style="width: 55px">
<strong>Date</strong></td>
<% if lShowCategory then %>
	<td><strong>Category</strong></td>
<% end if %>
<td><strong>Description</strong></td><td><strong>Download</strong></td></tr>
<%
strPageDisplay=""
do while not RSa.eof 
	strPageDisplay=strPageDisplay& "<tr><td>"& now & "</td><td>"
	strPageDisplay=strPageDisplay& RSa("AudioTitle") & "</td>"
	if lShowSpeaker then 
		strPageDisplay=strPageDisplay& "<td>" & RSa("Title") & " " & RsA("FirstName") & " " & RSa("LastName") & "&nbsp;</td>"
	end if
	strPageDisplay=strPageDisplay& "<td style=""font-size:xx-small;width:55px"">" & fncWB_FmtDate(RSa("AudioDate"),"%d-%b-%y") & "&nbsp;</td>"
	if lShowCategory then
		strPageDisplay=strPageDisplay& "<td style=""font-size:xx-small"">" & RSa("AudioCategory") & "&nbsp;</td>"
	end if
	strPageDisplay=strPageDisplay& "<td style=""font-size:xx-small"">" & RSa("AudioDescription") & "&nbsp;</td>"
	strPageDisplay=strPageDisplay& "<td><a href=""http://media.kehilla.org.il/audio/" & RSa("AudioURL") &"""><img src=""images/mp3.jpg"" width=""36"" height=""36""></a>&nbsp;</td>"
	strPageDisplay=strPageDisplay& "</tr>"
	RSa.MoveNext
Loop 
response.write strPageDisplay
%>
</table>
[+][-]07.21.2008 at 07:06AM PDT, ID: 22050591

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.21.2008 at 07:59AM PDT, ID: 22051112

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.21.2008 at 09:20AM PDT, ID: 22051891

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.22.2008 at 01:56AM PDT, ID: 22057356

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.22.2008 at 09:18AM PDT, ID: 22060966

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.23.2008 at 01:50AM PDT, ID: 22067179

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.23.2008 at 02:18AM PDT, ID: 22067323

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.23.2008 at 04:02AM PDT, ID: 22067803

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Active Server Pages (ASP)
Tags: Classic ASP & MSSQL, http://www.kehilla.org.il/a.asp?SID=6
Sign Up Now!
Solution Provided By: effx
Participating Experts: 3
Solution Grade: A
 
 
[+][-]07.23.2008 at 11:19AM PDT, ID: 22072217

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.23.2008 at 12:21PM PDT, ID: 22072865

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628