473,466 Members | 1,381 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

other than autopostback?

Hi,
Is there any other way to quickly grab the selected index/value of a
dropdownlist other using than the autopostback property to true? ...
I found the autopostback to slow down things....
in classic asp, there used to be request.form("<<name of a hidden value>>")
.....

thanks in advance
Nov 18 '05 #1
5 1792
huh?
the request.form() required the page to be posted to as well as using
string = this.textbox1.Value;
or
string = this.ddl.SelectedItem.Value()/Text()

Otherwise I am confused.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Mani" <mani(remove this)aTevikasystemsdotcom> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hi,
Is there any other way to quickly grab the selected index/value of a
dropdownlist other using than the autopostback property to true? ...
I found the autopostback to slow down things....
in classic asp, there used to be request.form("<<name of a hidden value>>") ....

thanks in advance

Nov 18 '05 #2
Autopostback is good to raise an event when the user makes a selection, if another control has caused the postback you can just use myDDL.selectedvalue

"Mani" <mani(remove this)aTevikasystemsdotcom> wrote in message news:%2****************@tk2msftngp13.phx.gbl...
Hi,
Is there any other way to quickly grab the selected index/value of a
dropdownlist other using than the autopostback property to true? ...
I found the autopostback to slow down things....
in classic asp, there used to be request.form("<<name of a hidden value>>")
....

thanks in advance

Nov 18 '05 #3
P.S...
FIX YOUR CLOCK. If I had noticed I wouldn't have answered, nor will I follow
up on this anymore either till it's adjusted correctly.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Mani" <mani(remove this)aTevikasystemsdotcom> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hi,
Is there any other way to quickly grab the selected index/value of a
dropdownlist other using than the autopostback property to true? ...
I found the autopostback to slow down things....
in classic asp, there used to be request.form("<<name of a hidden value>>") ....

thanks in advance

Nov 18 '05 #4
what should the clock be set to ?
My clock is set to the correct US EST time.

Thanks
Mani

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:OT**************@TK2MSFTNGP12.phx.gbl...
P.S...
FIX YOUR CLOCK. If I had noticed I wouldn't have answered, nor will I follow up on this anymore either till it's adjusted correctly.

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Mani" <mani(remove this)aTevikasystemsdotcom> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hi,
Is there any other way to quickly grab the selected index/value of a
dropdownlist other using than the autopostback property to true? ...
I found the autopostback to slow down things....
in classic asp, there used to be request.form("<<name of a hidden

value>>")
....

thanks in advance


Nov 18 '05 #5
Raterus,

that is exacly my objective here, that there are couple of dependent
dropdown lists, with elements numbering about 2000.
I couldnt find any other way than drop downs..

I found that the I could bind datareader returning from business object to
the page..they were fast

but is that good design? then it voids the use of a business layer if you
allow the data access elements to be accessed by the web layer ? right?


"Raterus" <ra*****@spam.org> wrote in message
news:OI**************@tk2msftngp13.phx.gbl...
Autopostback is good to raise an event when the user makes a selection, if
another control has caused the postback you can just use myDDL.selectedvalue

"Mani" <mani(remove this)aTevikasystemsdotcom> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hi,
Is there any other way to quickly grab the selected index/value of a
dropdownlist other using than the autopostback property to true? ...
I found the autopostback to slow down things....
in classic asp, there used to be request.form("<<name of a hidden value>>") ....

thanks in advance

Nov 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: huobazi | last post by:
Can NOt AutoPostBack for two DDL Posted: 07-03-2003 01:35 AM I have a usercontrol a.ascx ,put two DDL on the ascx. in an aspx's codebehind Page_Load i use LoadControl to Load the a.ascx in my...
2
by: Susan van Houen | last post by:
Hi All, How do I intercept an autopostback on the client side and prevent it from executing the submit? In classic ASP I used to intercept the on_submit and just return false;
4
by: Scott M. | last post by:
If I put RequiredFiledValidators on a page and set them up with corresponding TextBoxes everything works just fine. If I add a DropDownList and set its AutoPostBack to True, I am able to post data...
6
by: Sunil | last post by:
Dear All I am a bit confused about AutoPost Back. My concept about AutoPostBack is that If AutoPostBack i "TRUE" for a Web Form the Web Form Goes back to the server and displays a fresh copy of...
15
by: Mani | last post by:
Hi, Is there any other way to quickly grab the selected index/value of a dropdownlist other using than the autopostback property to true? ... I found the autopostback to slow down things.... in...
0
by: Scott | last post by:
Hi. I'm having some problems with AutoPostBack in my asp.net pages running on Windows 2003/IIS 6. The pages are really simple. For example, one of them contains two dropDownLists. The firstdrop...
2
by: Tom Edelbrok | last post by:
Question: Why does a button event (ie: Button1_Click) get executed on the first click for a textbox control which has 'autopostback=false', but doesn't get executed until a second click when...
3
by: Brad | last post by:
The first text on my form is a numeric field. I have a javascript that runs on this field for onkeyup (validate the key strokes and modifies fields on the screen) but when I do this and have the...
0
by: andy | last post by:
Hi, I have a form uses several dropdownlists to narrow a set of criteria. ( This is in turn used to control what is shown on a gridview. ) With each, the user selects an entry and then the next...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.