|
Subject:
|
error.asp?
|
|
Posted By:
|
grstad
|
Post Date:
|
12/8/2006 2:20:53 PM
|
Hei! How or where do I set the font-color on the message tekst when using <% Response.redirect "error.asp?messagetext=error-message" %> Where do I put the <td class=errortext>?
Mvh grstad
|
|
Reply By:
|
woodyz
|
Reply Date:
|
12/8/2006 2:25:20 PM
|
I am unclear on your request. If I understand you correctly, you want some text to show up in red in an error page. The html for that goes into the error.asp page itself.
Woody Z http://www.learntoprogramnow.com
|
|
Reply By:
|
dparsons
|
Reply Date:
|
12/8/2006 2:35:08 PM
|
On your error page you can do something like
<% Response.Write("<font color=#ff2400>" & Request.QueryString("messageText") &"</font>") %>
Or
<td class=errortext><%=Request.QueryString("messageText")%></td>
------------------------- I will only tell you how to do it, not do it for you. Unless, of course, you want to hire me to do work for you.
^^Thats my signature
|
|
Reply By:
|
grstad
|
Reply Date:
|
12/8/2006 2:58:09 PM
|
...thank you dparsons and woodyz!
Mvh grstad
|