This is a discussion on "Odd input field not displaying problem" within the Classic ASP section. This forum, and the thread "Odd input field not displaying problem are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
Odd input field not displaying problem
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|||
|
|||
|
Odd input field not displaying problem
Hi all,
I have a page that displays 2 input fields and buttons, which do not show up everytime on peoples IE. Some people can see the fields and buttons and others cannot. I couldn't see it at first when my friend had me go to the page. But a day after that, my IE finally decided to let me see the input fields. Are there any known problems that cause this, as the page has been working fine for about 2 years now with no changes. Here is the code: %@ Language=VBScript %> <% Dim sMessage, sReturnMessage sMessage = Request.QueryString("login") select case sMessage Case "fail" sReturnMessage = "Your search did not find a match." Case "unconfirmed" sReturnMessage = "Your browser must have cookies enabled<br>to use this site." case else sReturnMessage = "none" end select %> <html> <head> <title>Find a Couple - 2 of Hearts Honeymoons.com</title> <link rel="STYLESHEET" href="css/menu.css" type="text/css"> <link rel="STYLESHEET" href="css/global.css" type="text/css"> <link rel="STYLESHEET" href="css/index.css" type="text/css"> <link rel="STYLESHEET" href="css/register.css" type="text/css"> </head> <script type="text/javascript"> function showmenu(elmnt) { document.all(elmnt).style.visibility="visible" } function hidemenu(elmnt) { document.all(elmnt).style.visibility="hidden" } </script> <body> <!--#include file="header.asp" --> <div class="page_title"> Find </div> <br><br> <form name=search id=search method=POST action="searchResults.asp"> <img class="float_left" src="images/find.jpg" width="200" height="135"> <table class="table_content"> <tr> <td class="field_names" width="125px">Last Name:</td> <td class="field_data" width="125px"><input id="txtB" name="txtB"></td> <td width="250px"> </td> </tr> <tr> <td class="field_names" width="125px">First Name:</td> <td class="field_data" width="125px"><input id="txtG" name="txtG"></td> <td width="250px"> </td> </tr> <tr> <td colspan="2" align="center"><br> <input id="submit1" type="submit" value="Find" name="submit1"> <input name="reset" type=reset style="WIDTH: 65px" value=Reset width="65"> </td> <td width="200px"> </td> </tr> </table> <br><br><br><br> </form> <!--#include file="footer.asp" --> </BODY> </HTML> Thanks. |
|
|
|
#2
|
|||
|
|||
|
Re: Odd input field not displaying problem
Ok, nevermind on this one, I found out it was due to some bad coding with Css.
This is resolved. |
![]() |
| Tags |
| odd, input, field, displaying, problem |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Displaying relevant field names | stroodle01 | Classic ASP | 2 | Oct 5th, 2007 07:11 |
| Validating Input Text field | Mallik | Flash & Multimedia Forum | 1 | Jun 11th, 2007 14:44 |
| Need javascript to set input field value field | jdadwilson | JavaScript Forum | 3 | May 9th, 2007 04:47 |
| Input problem | BGarner | Web Page Design | 2 | Jan 23rd, 2007 16:11 |
| adding a field input to the subject in a form | goatsalad | PHP Forum | 1 | Feb 3rd, 2006 14:49 |