Hey Guys
Does anyone know if NetWare servers can render ASP pages ? What can I do to
deploy my ASP application on NetWare servers ?
Lekan.
>From: "Sukhi Samra" <sukhdeepsamra@h...>
>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Subject: [asp_web_howto] Re: combo box in ASP
>Date: Mon, 16 Jul 2001 08:57:23 -0700
>
>That's exactly what i did and it worked :) Thanksss Arijit.
>
>regards,
>Sukhi
>
>
>>From: <arijit.mallick@i...>
>>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>>To: "ASP Web HowTo" <asp_web_howto@p...>
>>Subject: [asp_web_howto] Re: combo box in ASP
>>Date: Mon, 16 Jul 2001 14:25:17 +0530
>>
>>See this!!
>>
>>Hi Sukhdeep,
>>u can choose either of:
>>1.requery the database depending on the selected option.
>>in this, fire onchange event of selectbox to post the form/append in
>>querystring and reload the page;
>>collect selected item by request.form/request,querystring;
>>fire the query and populate the boxes below.
>>
>>2.without contacting the database second time, do it on the client only.
>>for this, in the first query itself, fetch all relevant fields.
>>for each option in the selectbox, keep the other fields in hidden boxes.
>><select....>
>><option id=op1><%=rs.fields("...")%></option>
>><input type=hidden id=tile1 value="<%=rs.fields("Title")%>">
>>......as many fields required....
>></select>
>>
>>then in onchange event of selectbox, call:
>>function show() {
>> if(op1.selected==true) {
>> titlebox.value=title1.value;
>> etc.
>> }
>>}
>