Hi,
It seems you are moving from ASP to asp.net , they are very different and
the construction below should not be used, instead you use something like
this in the code behind
vsspath.Visible = Request(err) ;
you have to define vsspath as a DropDownList webcontrol.
It would be good idea if you read some articles about moving from asp to
asp.net in the MSDN site
Hope this help,
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
"Mustafa" <(E-Mail Removed)> wrote in message
news:AA5C8C11-CF36-4819-8979-(E-Mail Removed)...
>I am having the .aspx page with c# as a coding language in the HTML side i
>am
> requesting the variable if its true the seelct loop will execute else not.
> But i am getting the error message . what is the proper way different from
> ASP page i will code this.
>
> <%if(Request(err)=='true')%>
> <select name="vsspath">
> <OPTION value="75" selected>Sales </OPTION>
> <OPTION value="62" selected>Manage</OPTION>
> <OPTION value="72">Service Delivery</OPTION>
> </select>
> <%end if%>
>
> Thnaks
|