Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > HTML <OPTION SELECTED> Doesn't work in Vista machine

Reply
Thread Tools Display Modes

HTML <OPTION SELECTED> Doesn't work in Vista machine

 
 
vic
Guest
Posts: n/a

 
      06-27-2007
OK - This is a strange problem and I've finally narrowed it down to Vista.
On my website I have state and country drop-down menues which do what they
are supposed to do on an XP machine. However on my Vista Ultimate machine
the <OPTION SELECTED> will select entirely different items when loaded. If
I run the following HTML on an XP machine it will correctly select Canada
and Washington as defaults in the 2 drop-down menus. However, when run on a
Vista machine it selects United States and Oregon . This is happening on all
of the screens in the web site where there are drop-down menus.

This seems to be a glaring bug in Vista!


Vic

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~

<HTML>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<head><title>HTML Drop-Down Test</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Description" CONTENT="Internet based entry system for taking
horse show entries.">
<META NAME="Keywords" CONTENT="internet, online, horse show, entries">


<script language="JavaScript">
function viewshow(){
var showname
var showid

showname = document.main.show.value;
//alert(showname);
splitter = /[ -\/.]/;

showid = showname.split(splitter,4);
//alert (showid);
//alert (components[1]);

//var where_is_mytool="home/mytool/mytool.cgi";
//var mytool_array=where_is_mytool.split("/");
//alert(mytool_array[0]+" "+mytool_array[1]+" "+mytool_array[2]);
location.href="HTTPS://www.showmyhorse.com/showinfo_page.php?do="+showid[1];
}

</script>

</head>


<body onresize="window.location.href = window.location.href">


<table align=center border="2" width="750" cellpadding="0" cellspacing="0">
<tr>
<td>
<table align=center border="2" cellpadding="0" cellspacing="0"
width="450" >
<tr bgcolor='#FFFF99'><td colspan='2'><b>Welcome Vic to Showmyhorse.com</b>
</tr>

<tr><td><form name='main' action='http://www.showmyhorse.com/index.php'
method='POST'>
</td></tr>

<tr><td class='td2' align='left'> <b>Country:&nbsp;</b>
<select name='country' onchange='submit()'>
<OPTION SELECTED>Canada
<OPTION>Mexico
<OPTION>United States
</select>
</td></tr>

<tr>
<td class='td2' align='left'><b>State/Province:

<select name='ShowState' onchange='submit()'>
<OPTION>Alaska
<OPTION>Oregon
<OPTION>Virginia
<OPTION SELECTED>Washington
</select>

</td></tr>

<tr><td class='td2' align='center'><b>Shows available for online entry:
<select name='show' size='20' onchange='viewshow()'>
<option value="WA - 12259 - Paint Show - Inland NWFall Spectacular -
Spokane, WA - 2007-09-29">WA - 12259 - Paint Show - Inland NWFall
Spectacular - Spokane, WA - 2007-09-29</option>
<option value="WA - 12378 - Paints Show - Hells Canyon Paint Horse Clue -
Walla Walla, WA - 2007-07-21">WA - 12378 - Paints Show - Hells Canyon Paint
Horse Clue - Walla Walla, WA - 2007-07-21</option>
<option value="WA - 12427 - Paints Show - Washington State Paint Horse
Club - Spanaway, WA - 2007-07-28">WA - 12427 - Paints Show - Washington
State Paint Horse Club - Spanaway, WA - 2007-07-28</option>
<option value="WA - 12428 - Tennessee Walking Horse Show - IETWHBEA
Celebration - Spokane, WA - 2007-07-27">WA - 12428 - Tennessee Walking Horse
Show - IETWHBEA Celebration - Spokane, WA - 2007-07-27</option>
</select>

</td></tr>

<tr><td class="td1">
<input type="submit" name="allshows" value="Display Completed
Shows">
<input type="submit" name="allstates" value="Display *ALL*
Active Shows">
</td></tr>

<tr><td bgcolor="#FFAA66" align="center">

Horse show software is available at <A
HREF="http://www.showsec.com">Perfected Technology Systems</A>

</td></tr>

</form>
</table>
</table>

</body></html>

 
Reply With Quote
 
 
 
 
Larry Maturo
Guest
Posts: n/a

 
      06-27-2007
Hi Vic,

Are you using IE 7 on both machines? While I'm
probably not going to be any help to you, I imgine
that those who might would want to know this.

-- Larry Maturo


"vic" <> wrote in message
news:1E659D73-8664-4C63-89EC-...
> OK - This is a strange problem and I've finally narrowed it down to Vista.
> On my website I have state and country drop-down menues which do what they
> are supposed to do on an XP machine. However on my Vista Ultimate machine
> the <OPTION SELECTED> will select entirely different items when loaded.
> If I run the following HTML on an XP machine it will correctly select
> Canada and Washington as defaults in the 2 drop-down menus. However, when
> run on a Vista machine it selects United States and Oregon . This is
> happening on all of the screens in the web site where there are drop-down
> menus.
>
> This seems to be a glaring bug in Vista!
>
>
> Vic
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~
>
> <HTML>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <head><title>HTML Drop-Down Test</title>
> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
> <META NAME="Description" CONTENT="Internet based entry system for taking
> horse show entries.">
> <META NAME="Keywords" CONTENT="internet, online, horse show, entries">
>
>
> <script language="JavaScript">
> function viewshow(){
> var showname
> var showid
>
> showname = document.main.show.value;
> //alert(showname);
> splitter = /[ -\/.]/;
>
> showid = showname.split(splitter,4);
> //alert (showid);
> //alert (components[1]);
>
> //var where_is_mytool="home/mytool/mytool.cgi";
> //var mytool_array=where_is_mytool.split("/");
> //alert(mytool_array[0]+" "+mytool_array[1]+" "+mytool_array[2]);
>
> location.href="HTTPS://www.showmyhorse.com/showinfo_page.php?do="+showid[1];
> }
>
> </script>
>
> </head>
>
>
> <body onresize="window.location.href = window.location.href">
>
>
> <table align=center border="2" width="750" cellpadding="0"
> cellspacing="0">
> <tr>
> <td>
> <table align=center border="2" cellpadding="0" cellspacing="0"
> width="450" >
> <tr bgcolor='#FFFF99'><td colspan='2'><b>Welcome Vic to
> Showmyhorse.com</b> </tr>
>
> <tr><td><form name='main' action='http://www.showmyhorse.com/index.php'
> method='POST'>
> </td></tr>
>
> <tr><td class='td2' align='left'> <b>Country:&nbsp;</b>
> <select name='country' onchange='submit()'>
> <OPTION SELECTED>Canada
> <OPTION>Mexico
> <OPTION>United States
> </select>
> </td></tr>
>
> <tr>
> <td class='td2' align='left'><b>State/Province:
>
> <select name='ShowState' onchange='submit()'>
> <OPTION>Alaska
> <OPTION>Oregon
> <OPTION>Virginia
> <OPTION SELECTED>Washington
> </select>
>
> </td></tr>
>
> <tr><td class='td2' align='center'><b>Shows available for online entry:
> <select name='show' size='20' onchange='viewshow()'>
> <option value="WA - 12259 - Paint Show - Inland NWFall Spectacular -
> Spokane, WA - 2007-09-29">WA - 12259 - Paint Show - Inland NWFall
> Spectacular - Spokane, WA - 2007-09-29</option>
> <option value="WA - 12378 - Paints Show - Hells Canyon Paint Horse
> Clue - Walla Walla, WA - 2007-07-21">WA - 12378 - Paints Show - Hells
> Canyon Paint Horse Clue - Walla Walla, WA - 2007-07-21</option>
> <option value="WA - 12427 - Paints Show - Washington State Paint Horse
> Club - Spanaway, WA - 2007-07-28">WA - 12427 - Paints Show - Washington
> State Paint Horse Club - Spanaway, WA - 2007-07-28</option>
> <option value="WA - 12428 - Tennessee Walking Horse Show - IETWHBEA
> Celebration - Spokane, WA - 2007-07-27">WA - 12428 - Tennessee Walking
> Horse Show - IETWHBEA Celebration - Spokane, WA - 2007-07-27</option>
> </select>
>
> </td></tr>
>
> <tr><td class="td1">
> <input type="submit" name="allshows" value="Display Completed
> Shows">
> <input type="submit" name="allstates" value="Display *ALL*
> Active Shows">
> </td></tr>
>
> <tr><td bgcolor="#FFAA66" align="center">
>
> Horse show software is available at <A
> HREF="http://www.showsec.com">Perfected Technology Systems</A>
>
> </td></tr>
>
> </form>
> </table>
> </table>
>
> </body></html>



 
Reply With Quote
 
Terry R.
Guest
Posts: n/a

 
      06-27-2007
On 6/27/2007 7:58 AM On a whim, vic pounded out on the keyboard

> OK - This is a strange problem and I've finally narrowed it down to Vista.
> On my website I have state and country drop-down menues which do what they
> are supposed to do on an XP machine. However on my Vista Ultimate machine
> the <OPTION SELECTED> will select entirely different items when loaded. If
> I run the following HTML on an XP machine it will correctly select Canada
> and Washington as defaults in the 2 drop-down menus. However, when run on a
> Vista machine it selects United States and Oregon . This is happening on all
> of the screens in the web site where there are drop-down menus.
>
> This seems to be a glaring bug in Vista!
>
>
> Vic
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~
>
> <HTML>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <head><title>HTML Drop-Down Test</title>
> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
> <META NAME="Description" CONTENT="Internet based entry system for taking
> horse show entries.">
> <META NAME="Keywords" CONTENT="internet, online, horse show, entries">
>
>
> <script language="JavaScript">
> function viewshow(){
> var showname
> var showid
>
> showname = document.main.show.value;
> //alert(showname);
> splitter = /[ -\/.]/;
>
> showid = showname.split(splitter,4);
> //alert (showid);
> //alert (components[1]);
>
> //var where_is_mytool="home/mytool/mytool.cgi";
> //var mytool_array=where_is_mytool.split("/");
> //alert(mytool_array[0]+" "+mytool_array[1]+" "+mytool_array[2]);
> location.href="HTTPS://www.showmyhorse.com/showinfo_page.php?do="+showid[1];
> }
>
> </script>
>
> </head>
>
>
> <body onresize="window.location.href = window.location.href">
>
>
> <table align=center border="2" width="750" cellpadding="0" cellspacing="0">
> <tr>
> <td>
> <table align=center border="2" cellpadding="0" cellspacing="0"
> width="450" >
> <tr bgcolor='#FFFF99'><td colspan='2'><b>Welcome Vic to Showmyhorse.com</b>
> </tr>
>
> <tr><td><form name='main' action='http://www.showmyhorse.com/index.php'
> method='POST'>
> </td></tr>
>
> <tr><td class='td2' align='left'> <b>Country:&nbsp;</b>
> <select name='country' onchange='submit()'>
> <OPTION SELECTED>Canada
> <OPTION>Mexico
> <OPTION>United States
> </select>
> </td></tr>
>
> <tr>
> <td class='td2' align='left'><b>State/Province:
>
> <select name='ShowState' onchange='submit()'>
> <OPTION>Alaska
> <OPTION>Oregon
> <OPTION>Virginia
> <OPTION SELECTED>Washington
> </select>
>
> </td></tr>
>
> <tr><td class='td2' align='center'><b>Shows available for online entry:
> <select name='show' size='20' onchange='viewshow()'>
> <option value="WA - 12259 - Paint Show - Inland NWFall Spectacular -
> Spokane, WA - 2007-09-29">WA - 12259 - Paint Show - Inland NWFall
> Spectacular - Spokane, WA - 2007-09-29</option>
> <option value="WA - 12378 - Paints Show - Hells Canyon Paint Horse Clue -
> Walla Walla, WA - 2007-07-21">WA - 12378 - Paints Show - Hells Canyon Paint
> Horse Clue - Walla Walla, WA - 2007-07-21</option>
> <option value="WA - 12427 - Paints Show - Washington State Paint Horse
> Club - Spanaway, WA - 2007-07-28">WA - 12427 - Paints Show - Washington
> State Paint Horse Club - Spanaway, WA - 2007-07-28</option>
> <option value="WA - 12428 - Tennessee Walking Horse Show - IETWHBEA
> Celebration - Spokane, WA - 2007-07-27">WA - 12428 - Tennessee Walking Horse
> Show - IETWHBEA Celebration - Spokane, WA - 2007-07-27</option>
> </select>
>
> </td></tr>
>
> <tr><td class="td1">
> <input type="submit" name="allshows" value="Display Completed
> Shows">
> <input type="submit" name="allstates" value="Display *ALL*
> Active Shows">
> </td></tr>
>
> <tr><td bgcolor="#FFAA66" align="center">
>
> Horse show software is available at <A
> HREF="http://www.showsec.com">Perfected Technology Systems</A>
>
> </td></tr>
>
> </form>
> </table>
> </table>
>
> </body></html>
>


Hi Vic,

I can't see this being any difference between XP & Vista as much as the
configuration of the browsers used in both (assuming your using IE7 on
both). Have you double checked to verify that each of the browsers are
identically configured? Did you try installing Firefox on each machine
and see if the same thing happens?

Can you provide a link so others can verify it with Vista & XP?

--
Terry R.

***Reply Note***
Anti-spam measures are included in my email address.
Delete NOSPAM from the email address after clicking Reply.
 
Reply With Quote
 
Mike Mueller
Guest
Posts: n/a

 
      06-27-2007
Well, I will narrow it down even further: it does not work on IE7 on your
Vista machine

It works fine on mine- even with all of the deprecated and invalid code that
you have






"vic" <> wrote in message
news:1E659D73-8664-4C63-89EC-...
> OK - This is a strange problem and I've finally narrowed it down to Vista.
> On my website I have state and country drop-down menues which do what they
> are supposed to do on an XP machine. However on my Vista Ultimate machine
> the <OPTION SELECTED> will select entirely different items when loaded.
> If I run the following HTML on an XP machine it will correctly select
> Canada and Washington as defaults in the 2 drop-down menus. However, when
> run on a Vista machine it selects United States and Oregon . This is
> happening on all of the screens in the web site where there are drop-down
> menus.
>
> This seems to be a glaring bug in Vista!
>
>
> Vic
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~
>
> <HTML>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <head><title>HTML Drop-Down Test</title>
> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
> <META NAME="Description" CONTENT="Internet based entry system for taking
> horse show entries.">
> <META NAME="Keywords" CONTENT="internet, online, horse show, entries">
>
>
> <script language="JavaScript">
> function viewshow(){
> var showname
> var showid
>
> showname = document.main.show.value;
> //alert(showname);
> splitter = /[ -\/.]/;
>
> showid = showname.split(splitter,4);
> //alert (showid);
> //alert (components[1]);
>
> //var where_is_mytool="home/mytool/mytool.cgi";
> //var mytool_array=where_is_mytool.split("/");
> //alert(mytool_array[0]+" "+mytool_array[1]+" "+mytool_array[2]);
>
> location.href="HTTPS://www.showmyhorse.com/showinfo_page.php?do="+showid[1];
> }
>
> </script>
>
> </head>
>
>
> <body onresize="window.location.href = window.location.href">
>
>
> <table align=center border="2" width="750" cellpadding="0"
> cellspacing="0">
> <tr>
> <td>
> <table align=center border="2" cellpadding="0" cellspacing="0"
> width="450" >
> <tr bgcolor='#FFFF99'><td colspan='2'><b>Welcome Vic to
> Showmyhorse.com</b> </tr>
>
> <tr><td><form name='main' action='http://www.showmyhorse.com/index.php'
> method='POST'>
> </td></tr>
>
> <tr><td class='td2' align='left'> <b>Country:&nbsp;</b>
> <select name='country' onchange='submit()'>
> <OPTION SELECTED>Canada
> <OPTION>Mexico
> <OPTION>United States
> </select>
> </td></tr>
>
> <tr>
> <td class='td2' align='left'><b>State/Province:
>
> <select name='ShowState' onchange='submit()'>
> <OPTION>Alaska
> <OPTION>Oregon
> <OPTION>Virginia
> <OPTION SELECTED>Washington
> </select>
>
> </td></tr>
>
> <tr><td class='td2' align='center'><b>Shows available for online entry:
> <select name='show' size='20' onchange='viewshow()'>
> <option value="WA - 12259 - Paint Show - Inland NWFall Spectacular -
> Spokane, WA - 2007-09-29">WA - 12259 - Paint Show - Inland NWFall
> Spectacular - Spokane, WA - 2007-09-29</option>
> <option value="WA - 12378 - Paints Show - Hells Canyon Paint Horse
> Clue - Walla Walla, WA - 2007-07-21">WA - 12378 - Paints Show - Hells
> Canyon Paint Horse Clue - Walla Walla, WA - 2007-07-21</option>
> <option value="WA - 12427 - Paints Show - Washington State Paint Horse
> Club - Spanaway, WA - 2007-07-28">WA - 12427 - Paints Show - Washington
> State Paint Horse Club - Spanaway, WA - 2007-07-28</option>
> <option value="WA - 12428 - Tennessee Walking Horse Show - IETWHBEA
> Celebration - Spokane, WA - 2007-07-27">WA - 12428 - Tennessee Walking
> Horse Show - IETWHBEA Celebration - Spokane, WA - 2007-07-27</option>
> </select>
>
> </td></tr>
>
> <tr><td class="td1">
> <input type="submit" name="allshows" value="Display Completed
> Shows">
> <input type="submit" name="allstates" value="Display *ALL*
> Active Shows">
> </td></tr>
>
> <tr><td bgcolor="#FFAA66" align="center">
>
> Horse show software is available at <A
> HREF="http://www.showsec.com">Perfected Technology Systems</A>
>
> </td></tr>
>
> </form>
> </table>
> </table>
>
> </body></html>


 
Reply With Quote
 
vic
Guest
Posts: n/a

 
      06-27-2007

"Terry R." <> wrote in message
news:...
> On 6/27/2007 7:58 AM On a whim, vic pounded out on the keyboard
>
>> OK - This is a strange problem and I've finally narrowed it down to
>> Vista. On my website I have state and country drop-down menues which do
>> what they are supposed to do on an XP machine. However on my Vista
>> Ultimate machine the <OPTION SELECTED> will select entirely different
>> items when loaded. If I run the following HTML on an XP machine it will
>> correctly select Canada and Washington as defaults in the 2 drop-down
>> menus. However, when run on a Vista machine it selects United States and
>> Oregon . This is happening on all of the screens in the web site where
>> there are drop-down menus.
>>
>> This seems to be a glaring bug in Vista!
>>
>>
>> Vic
>>
>> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~
>>
>> <HTML>
>> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
>> <head><title>HTML Drop-Down Test</title>
>> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
>> <META NAME="Description" CONTENT="Internet based entry system for taking
>> horse show entries.">
>> <META NAME="Keywords" CONTENT="internet, online, horse show, entries">
>>
>>
>> <script language="JavaScript">
>> function viewshow(){
>> var showname
>> var showid
>>
>> showname = document.main.show.value;
>> //alert(showname);
>> splitter = /[ -\/.]/;
>>
>> showid = showname.split(splitter,4);
>> //alert (showid);
>> //alert (components[1]);
>>
>> //var where_is_mytool="home/mytool/mytool.cgi";
>> //var mytool_array=where_is_mytool.split("/");
>> //alert(mytool_array[0]+" "+mytool_array[1]+" "+mytool_array[2]);
>>
>> location.href="HTTPS://www.showmyhorse.com/showinfo_page.php?do="+showid[1];
>> }
>>
>> </script>
>>
>> </head>
>>
>>
>> <body onresize="window.location.href = window.location.href">
>>
>>
>> <table align=center border="2" width="750" cellpadding="0"
>> cellspacing="0">
>> <tr>
>> <td>
>> <table align=center border="2" cellpadding="0" cellspacing="0"
>> width="450" >
>> <tr bgcolor='#FFFF99'><td colspan='2'><b>Welcome Vic to
>> Showmyhorse.com</b> </tr>
>>
>> <tr><td><form name='main' action='http://www.showmyhorse.com/index.php'
>> method='POST'>
>> </td></tr>
>>
>> <tr><td class='td2' align='left'> <b>Country:&nbsp;</b>
>> <select name='country' onchange='submit()'>
>> <OPTION SELECTED>Canada
>> <OPTION>Mexico
>> <OPTION>United States
>> </select>
>> </td></tr>
>>
>> <tr>
>> <td class='td2' align='left'><b>State/Province:
>>
>> <select name='ShowState' onchange='submit()'>
>> <OPTION>Alaska
>> <OPTION>Oregon
>> <OPTION>Virginia
>> <OPTION SELECTED>Washington
>> </select>
>>
>> </td></tr>
>>
>> <tr><td class='td2' align='center'><b>Shows available for online entry:
>> <select name='show' size='20' onchange='viewshow()'>
>> <option value="WA - 12259 - Paint Show - Inland NWFall Spectacular -
>> Spokane, WA - 2007-09-29">WA - 12259 - Paint Show - Inland NWFall
>> Spectacular - Spokane, WA - 2007-09-29</option>
>> <option value="WA - 12378 - Paints Show - Hells Canyon Paint Horse
>> Clue - Walla Walla, WA - 2007-07-21">WA - 12378 - Paints Show - Hells
>> Canyon Paint Horse Clue - Walla Walla, WA - 2007-07-21</option>
>> <option value="WA - 12427 - Paints Show - Washington State Paint Horse
>> Club - Spanaway, WA - 2007-07-28">WA - 12427 - Paints Show - Washington
>> State Paint Horse Club - Spanaway, WA - 2007-07-28</option>
>> <option value="WA - 12428 - Tennessee Walking Horse Show - IETWHBEA
>> Celebration - Spokane, WA - 2007-07-27">WA - 12428 - Tennessee Walking
>> Horse Show - IETWHBEA Celebration - Spokane, WA - 2007-07-27</option>
>> </select>
>>
>> </td></tr>
>>
>> <tr><td class="td1">
>> <input type="submit" name="allshows" value="Display Completed
>> Shows">
>> <input type="submit" name="allstates" value="Display *ALL*
>> Active Shows">
>> </td></tr>
>>
>> <tr><td bgcolor="#FFAA66" align="center">
>>
>> Horse show software is available at <A
>> HREF="http://www.showsec.com">Perfected Technology Systems</A>
>>
>> </td></tr>
>>
>> </form>
>> </table>
>> </table>
>>
>> </body></html>

>
> Hi Vic,
>
> I can't see this being any difference between XP & Vista as much as the
> configuration of the browsers used in both (assuming your using IE7 on
> both). Have you double checked to verify that each of the browsers are
> identically configured? Did you try installing Firefox on each machine
> and see if the same thing happens?
>
> Can you provide a link so others can verify it with Vista & XP?
>
> --
> Terry R.
>
> ***Reply Note***
> Anti-spam measures are included in my email address.
> Delete NOSPAM from the email address after clicking Reply.



Thanks Terry,

I am using IE7 on both machines but not the same build (Vista is later).

I could provide a link but you would need to register on the web site, so I
included an example of the HTM. This example fails on the Vista machine and
works on the XP machine. It does work with Firefox which says that it is
IE7. As far as I know IE7 is configured the same on each machine.

Vic





 
Reply With Quote
 
vic
Guest
Posts: n/a

 
      06-27-2007

"Mike Mueller" <> wrote in message
news:81732E0B-B99F-40E0-B136-...
> Well, I will narrow it down even further: it does not work on IE7 on your
> Vista machine
>
> It works fine on mine- even with all of the deprecated and invalid code
> that you have
>
>
>


Mike, so what is all of the invalid and depracated code you refer to?
Other then the missing </OPTION> tags which doesn't make any difference
either way.


Vic

 
Reply With Quote
 
xfile
Guest
Posts: n/a

 
      06-28-2007
Hi,

You may also try newsgroups for development tools as more programming
experts are there.

For MS tools, you could at least try the following two:

(1) Expression Web Designer: microsoft.public.expression.webdesigner

(2) FrontPage: microsoft.public.frontpage.programming

Although those groups are for named development tool, many ask general web
programming questions for various platforms.

Hope this helps and good luck.


"vic" <> wrote in message
news:1E659D73-8664-4C63-89EC-...
> OK - This is a strange problem and I've finally narrowed it down to Vista.
> On my website I have state and country drop-down menues which do what they
> are supposed to do on an XP machine. However on my Vista Ultimate machine
> the <OPTION SELECTED> will select entirely different items when loaded.
> If I run the following HTML on an XP machine it will correctly select
> Canada and Washington as defaults in the 2 drop-down menus. However, when
> run on a Vista machine it selects United States and Oregon . This is
> happening on all of the screens in the web site where there are drop-down
> menus.
>
> This seems to be a glaring bug in Vista!
>
>
> Vic
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~
>
> <HTML>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <head><title>HTML Drop-Down Test</title>
> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
> <META NAME="Description" CONTENT="Internet based entry system for taking
> horse show entries.">
> <META NAME="Keywords" CONTENT="internet, online, horse show, entries">
>
>
> <script language="JavaScript">
> function viewshow(){
> var showname
> var showid
>
> showname = document.main.show.value;
> //alert(showname);
> splitter = /[ -\/.]/;
>
> showid = showname.split(splitter,4);
> //alert (showid);
> //alert (components[1]);
>
> //var where_is_mytool="home/mytool/mytool.cgi";
> //var mytool_array=where_is_mytool.split("/");
> //alert(mytool_array[0]+" "+mytool_array[1]+" "+mytool_array[2]);
>
> location.href="HTTPS://www.showmyhorse.com/showinfo_page.php?do="+showid[1];
> }
>
> </script>
>
> </head>
>
>
> <body onresize="window.location.href = window.location.href">
>
>
> <table align=center border="2" width="750" cellpadding="0"
> cellspacing="0">
> <tr>
> <td>
> <table align=center border="2" cellpadding="0" cellspacing="0"
> width="450" >
> <tr bgcolor='#FFFF99'><td colspan='2'><b>Welcome Vic to
> Showmyhorse.com</b> </tr>
>
> <tr><td><form name='main' action='http://www.showmyhorse.com/index.php'
> method='POST'>
> </td></tr>
>
> <tr><td class='td2' align='left'> <b>Country:&nbsp;</b>
> <select name='country' onchange='submit()'>
> <OPTION SELECTED>Canada
> <OPTION>Mexico
> <OPTION>United States
> </select>
> </td></tr>
>
> <tr>
> <td class='td2' align='left'><b>State/Province:
>
> <select name='ShowState' onchange='submit()'>
> <OPTION>Alaska
> <OPTION>Oregon
> <OPTION>Virginia
> <OPTION SELECTED>Washington
> </select>
>
> </td></tr>
>
> <tr><td class='td2' align='center'><b>Shows available for online entry:
> <select name='show' size='20' onchange='viewshow()'>
> <option value="WA - 12259 - Paint Show - Inland NWFall Spectacular -
> Spokane, WA - 2007-09-29">WA - 12259 - Paint Show - Inland NWFall
> Spectacular - Spokane, WA - 2007-09-29</option>
> <option value="WA - 12378 - Paints Show - Hells Canyon Paint Horse
> Clue - Walla Walla, WA - 2007-07-21">WA - 12378 - Paints Show - Hells
> Canyon Paint Horse Clue - Walla Walla, WA - 2007-07-21</option>
> <option value="WA - 12427 - Paints Show - Washington State Paint Horse
> Club - Spanaway, WA - 2007-07-28">WA - 12427 - Paints Show - Washington
> State Paint Horse Club - Spanaway, WA - 2007-07-28</option>
> <option value="WA - 12428 - Tennessee Walking Horse Show - IETWHBEA
> Celebration - Spokane, WA - 2007-07-27">WA - 12428 - Tennessee Walking
> Horse Show - IETWHBEA Celebration - Spokane, WA - 2007-07-27</option>
> </select>
>
> </td></tr>
>
> <tr><td class="td1">
> <input type="submit" name="allshows" value="Display Completed
> Shows">
> <input type="submit" name="allstates" value="Display *ALL*
> Active Shows">
> </td></tr>
>
> <tr><td bgcolor="#FFAA66" align="center">
>
> Horse show software is available at <A
> HREF="http://www.showsec.com">Perfected Technology Systems</A>
>
> </td></tr>
>
> </form>
> </table>
> </table>
>
> </body></html>



 
Reply With Quote
 
xfile
Guest
Posts: n/a

 
      06-28-2007
Hi,

By no means I'm a programming expert (not even a developer), but many would
suggest you to use CSS especially for IE7. But it's up to one's choice.

Just to share and good luck.


"vic" <> wrote in message
newsB1DE3F8-829F-4A9F-AB46-...
>
> "Mike Mueller" <> wrote in message
> news:81732E0B-B99F-40E0-B136-...
>> Well, I will narrow it down even further: it does not work on IE7 on your
>> Vista machine
>>
>> It works fine on mine- even with all of the deprecated and invalid code
>> that you have
>>
>>
>>

>
> Mike, so what is all of the invalid and depracated code you refer to?
> Other then the missing </OPTION> tags which doesn't make any difference
> either way.
>
>
> Vic
>



 
Reply With Quote
 
xfile
Guest
Posts: n/a

 
      06-28-2007
Hi,

Another thought just came to my mind. Based on what you've said,

> On my website I have [...]


> If I run the following HTML on an XP machine it will correctly select
> Canada[...]


> However on my Vista Ultimate machine[...]


Is it your local site or remote site? If it's for your local site, are you
using IIS7 comes with Ultimate?

I know IIS7 acts differently than IIS5.x (Windows XP) and IIS6 (Server
2003). So if you are using IIS7 for testing local sites, you may want to
take that into considerations for the problem.

Just for your reference, we don't use client side IIS7 (Vista) at least
until the server side is being officially released and proven worth the
efforts.

But you may still wish to check those web development newsgroups.

Good luck.


"vic" <> wrote in message
news:1E659D73-8664-4C63-89EC-...
> OK - This is a strange problem and I've finally narrowed it down to Vista.
> On my website I have state and country drop-down menues which do what they
> are supposed to do on an XP machine. However on my Vista Ultimate machine
> the <OPTION SELECTED> will select entirely different items when loaded.
> If I run the following HTML on an XP machine it will correctly select
> Canada and Washington as defaults in the 2 drop-down menus. However, when
> run on a Vista machine it selects United States and Oregon . This is
> happening on all of the screens in the web site where there are drop-down
> menus.
>
> This seems to be a glaring bug in Vista!
>
>
> Vic
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~
>
> <HTML>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <head><title>HTML Drop-Down Test</title>
> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
> <META NAME="Description" CONTENT="Internet based entry system for taking
> horse show entries.">
> <META NAME="Keywords" CONTENT="internet, online, horse show, entries">
>
>
> <script language="JavaScript">
> function viewshow(){
> var showname
> var showid
>
> showname = document.main.show.value;
> //alert(showname);
> splitter = /[ -\/.]/;
>
> showid = showname.split(splitter,4);
> //alert (showid);
> //alert (components[1]);
>
> //var where_is_mytool="home/mytool/mytool.cgi";
> //var mytool_array=where_is_mytool.split("/");
> //alert(mytool_array[0]+" "+mytool_array[1]+" "+mytool_array[2]);
>
> location.href="HTTPS://www.showmyhorse.com/showinfo_page.php?do="+showid[1];
> }
>
> </script>
>
> </head>
>
>
> <body onresize="window.location.href = window.location.href">
>
>
> <table align=center border="2" width="750" cellpadding="0"
> cellspacing="0">
> <tr>
> <td>
> <table align=center border="2" cellpadding="0" cellspacing="0"
> width="450" >
> <tr bgcolor='#FFFF99'><td colspan='2'><b>Welcome Vic to
> Showmyhorse.com</b> </tr>
>
> <tr><td><form name='main' action='http://www.showmyhorse.com/index.php'
> method='POST'>
> </td></tr>
>
> <tr><td class='td2' align='left'> <b>Country:&nbsp;</b>
> <select name='country' onchange='submit()'>
> <OPTION SELECTED>Canada
> <OPTION>Mexico
> <OPTION>United States
> </select>
> </td></tr>
>
> <tr>
> <td class='td2' align='left'><b>State/Province:
>
> <select name='ShowState' onchange='submit()'>
> <OPTION>Alaska
> <OPTION>Oregon
> <OPTION>Virginia
> <OPTION SELECTED>Washington
> </select>
>
> </td></tr>
>
> <tr><td class='td2' align='center'><b>Shows available for online entry:
> <select name='show' size='20' onchange='viewshow()'>
> <option value="WA - 12259 - Paint Show - Inland NWFall Spectacular -
> Spokane, WA - 2007-09-29">WA - 12259 - Paint Show - Inland NWFall
> Spectacular - Spokane, WA - 2007-09-29</option>
> <option value="WA - 12378 - Paints Show - Hells Canyon Paint Horse
> Clue - Walla Walla, WA - 2007-07-21">WA - 12378 - Paints Show - Hells
> Canyon Paint Horse Clue - Walla Walla, WA - 2007-07-21</option>
> <option value="WA - 12427 - Paints Show - Washington State Paint Horse
> Club - Spanaway, WA - 2007-07-28">WA - 12427 - Paints Show - Washington
> State Paint Horse Club - Spanaway, WA - 2007-07-28</option>
> <option value="WA - 12428 - Tennessee Walking Horse Show - IETWHBEA
> Celebration - Spokane, WA - 2007-07-27">WA - 12428 - Tennessee Walking
> Horse Show - IETWHBEA Celebration - Spokane, WA - 2007-07-27</option>
> </select>
>
> </td></tr>
>
> <tr><td class="td1">
> <input type="submit" name="allshows" value="Display Completed
> Shows">
> <input type="submit" name="allstates" value="Display *ALL*
> Active Shows">
> </td></tr>
>
> <tr><td bgcolor="#FFAA66" align="center">
>
> Horse show software is available at <A
> HREF="http://www.showsec.com">Perfected Technology Systems</A>
>
> </td></tr>
>
> </form>
> </table>
> </table>
>
> </body></html>



 
Reply With Quote
 
Mr. Arnold
Guest
Posts: n/a

 
      06-28-2007

"vic" <> wrote in message
news:1E659D73-8664-4C63-89EC-...
> OK - This is a strange problem and I've finally narrowed it down to Vista.
> On my website I have state and country drop-down menues which do what they
> are supposed to do on an XP machine. However on my Vista Ultimate machine
> the <OPTION SELECTED> will select entirely different items when loaded.
> If I run the following HTML on an XP machine it will correctly select
> Canada and Washington as defaults in the 2 drop-down menus. However, when
> run on a Vista machine it selects United States and Oregon . This is
> happening on all of the screens in the web site where there are drop-down
> menus.
>
> This seems to be a glaring bug in Vista!
>
>


My God, how in the heck do you associate the problem with the rendering of a
HTML controls and usage of the controls on the client side to a problem with
Vista?

If anything, it's a browser problem with using JavaScript or ASPScript
that's the problem that just happens to be running on the Vista O/S.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Vista Signature does not work when manually selected? Beepa Windows Vista General Discussion 5 06-22-2008 06:59 PM
Can't get IIS to work in duplicate Vista install on same machine no_spam_paquette@uwo.ca Windows Vista Networking 1 02-28-2008 08:40 PM
Problems logging into my work email with Vista Machine Davet102 Windows Vista General Discussion 6 02-17-2008 02:30 PM
Vista OEM product key - will it work on another machine? Andre Da Costa[ActiveWin] Windows Vista General Discussion 111 11-30-2007 05:22 AM
No boot option when installed Windows 2000 on Vista machine Kappa Windows Vista Installation 10 05-08-2007 02:07 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59