This topic is locked

Tomcat and asp

5/26/2004 5:38:47 AM
ASPRunnerPro General questions
T
Toad author

Hi, I am using Tomcat web server. Can Tomcat serve asp pages? Are the two compatible or is asp something entirely different?

Also, can I change the row height for query results. I looked in the template editor but not sure.
Superb application and I am looking forward to using it.
Thank you <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=629&image=1&table=forumtopics' class='bbc_emoticon' alt=':)' />

Sergey Kornilov admin 5/26/2004

As far as I understand Tomcat can server JSP (Java Server Pages) only. To run ASP you need Internet Information Server that comes with Win2000 Advanced Server, XP Professional and Win2003 Server.
To change row height on the list page open list.asp in template editor and make the following change (in bold):
Lines 608-614

 

Else

  sShadeClass = ""

  iShadeTheDetail = 0

End If

%>

<tr valign=top height=40 <%=sShadeClass%> ##ROWHIGHLITE##onmouseover="rowRollover(<%=iNumberOfRows%>, 1);" onmouseout="rowRollover(<%=iNumberOfRows%>, 0);" id="tr_<%=iNumberOfRows%>"##/ROWHIGHLITE##>

        ##EDITBUTTON##


I hope this helps.

500118 5/27/2004

I have adjusted the height value however the row heights will not reduce to less than double the height of the font (even if I set this value incredibly low nothing happens). Is this a design restriction or should there be some way to have row widths that are about the same height as the fonts. The row heights will increase, so the templates are being saved correctly.
In your experience is there any reason that Tomcat and ISS could not co exist on different ports?
Thank you.

500119 5/27/2004

Actually, I take that back. One of the pages has the new reduced row heights. However only one. <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=1972&image=1&table=forumreplies' class='bbc_emoticon' alt=':)' />

500120 5/27/2004

I have figured it out. The row heights will not reduce further due to the "edit", "add new", "Delete" and "View" options.
If they are all removed then the row heights reduce. Is this a bug?

Sergey Kornilov admin 5/27/2004

I guess this is the way how Internet Explorer parses HTML page. When you set row height excplicitly you only advise IE how do you like to see this row. Actual row height depends on this row content.
I cannot tell you anything about Tomcat and IIS working on the same box simulteneously. I guess you can give it a try.