This topic is locked

Displaying Two fields Horizontaly

10/18/2005 06:59:38
ASPRunnerPro General questions
author

Hi ,

I want to display two fields horizontally;
such as this
Staring date toEnding Date
and I want to display the word "To" inbetween the two fields?
I am using SQL 2000
Can you please help.
THanks in Advance.

Sergey Kornilov admin 10/18/2005

What page you talking about?

500347 10/19/2005

Hi ,

The pages are View Page, Edit Page, Add, Print and Eport.
Thanks,

Sergey Kornilov admin 10/19/2005

You need to open generated ASP pages in text editor and remove one of <tr> tags that starts new row.

<%

Response.Write "<tr><td class=shade>" & Label(rs.Fields("ID").Name) & "</td>"

%>


If you need more customizations like this take a look at http://www.w3schools.com which provides a number of HTML and ASP tutorials.

500348 10/21/2005

Thanks,

It worked.