Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hiding Status Bar Display in an ASP page?

Status
Not open for further replies.

Samoyed

Programmer
Jul 13, 2001
17
CA
Hi,

I'd like to know if this is possible. After my asp page has loaded, it returns a number of results in the form of hyperlinks. Is there a general javascript function I can code, so that when I mouse over these hyperlinks, it will show a general message in the display bar status? Or do I have to code it exactly when the hyperlink is written out in the ASP file?

In my asp file, here is the table I build:

<TABLE BORDER=&quot;1&quot; width=&quot;80%&quot;>
<TR>
<%For Each Field In RS.Fields%>
<th><%If Field.Name <> &quot;DummyField&quot; Then
response.write Field.name
End If%></th>
<%Next%>
</TR>
<% Do While Not RS.EOF %>
<TR>
<%For Each Field In RS.Fields %>
<TD ALIGN=center>
<%If Field.Name =&quot;ReportName&quot; Then
Response.Write &quot;<a href='&quot; & Field.Value & &quot;'>&quot; & Field.Value
End If %>
</TD>
<% Next
RS.MoveNext %>
</TR>
<% Loop %>
</TABLE>

I know the code to change the status bar display is:

<a href=&quot; onmouseover=&quot; window.status='Go To CodeAve.com!'; return true&quot; onmouseout=&quot;window.status=''; return true&quot;>CodeAve</a>

Do I have to incorporate this code into the Response.Write in my ASP file? Or can I have a general javascript function for hyperlinks?

Any ideas would be greatly appreciated.

Thanx {=-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top