G
Guest
I have a vb.net page that uses a form as below:
<form id="Visual" name="Visual" method="post" runat="server">
If I run this on my Windows XP development PC then the HTML generated from
it is:
<form name="Visual" method="post" action="Salesreport.aspx?Index=7"
language="javascript" onsubmit="javascript:return WebForm_OnSubmit();"
id="Visual">
As you can see the form still contains the 'name=...'
However if I run the same form on my live Windows 2000 server, the HTML
generated is:
<form method="post" action="Salesreport.aspx?Index=7"
onsubmit="javascript:return WebForm_OnSubmit();" id="Visual">
and as you can see the 'name' and 'language' properties are missing.
I need the 'name' property to appear as in my development environment as
this is used by a calendar control that is called from the page.
Has anybody any idea why it appears on my dev PC and not my live server?
Is it a versioning issue, and if so how do I go about checking versions etc?
Thanks, Mike.
<form id="Visual" name="Visual" method="post" runat="server">
If I run this on my Windows XP development PC then the HTML generated from
it is:
<form name="Visual" method="post" action="Salesreport.aspx?Index=7"
language="javascript" onsubmit="javascript:return WebForm_OnSubmit();"
id="Visual">
As you can see the form still contains the 'name=...'
However if I run the same form on my live Windows 2000 server, the HTML
generated is:
<form method="post" action="Salesreport.aspx?Index=7"
onsubmit="javascript:return WebForm_OnSubmit();" id="Visual">
and as you can see the 'name' and 'language' properties are missing.
I need the 'name' property to appear as in my development environment as
this is used by a calendar control that is called from the page.
Has anybody any idea why it appears on my dev PC and not my live server?
Is it a versioning issue, and if so how do I go about checking versions etc?
Thanks, Mike.