473,395 Members | 1,678 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Dropdownlist probs in ASP.NET

Hi all,

I am doing this in a web page...

I have a dropdownlist that autopostback. This sets me a filter criteria for
items to display in a datalist.

In the datalist, I have edit capabilities, which opens a text box.

When I click Update for the datalist (edit), then for some reason, the
dropdownlist gets run again before the updatecommand for the datalist. This
is resetting the value in my datalist edit text box to what it was before my
edit.

How can I stop that?

Thanks.

Best regards,
Dave Colliver.
http://www.DerbyFOCUS.com
~~
http://www.FOCUSPortals.com - Local franchises available
Feb 1 '06 #1
4 1927
"David" <da*****************@revilloc.REMOVETHIS.com> wrote in message
news:O8**************@TK2MSFTNGP15.phx.gbl...
How can I stop that?


I never found a way to prevent that in v1.x, so I would invariably design
solutions to avoid the situation...
Feb 1 '06 #2
I have navigated around similar issues before but those solutions won't
apply to this one. :-(

I guess then what I will have to do is to remove autopostback and create my
own JS onchange event to refresh the page using get instead of post. I
suppose this way, I can handle it the way it should handle.

I hate having to revert to ASP type technology to get around stupid issues
like this.

Thanks.

Best regards,
Dave Colliver.
http://www.SheffieldFOCUS.com
~~
http://www.FOCUSPortals.com - Local franchises available
"Mark Rae" <ma**@markN-O-S-P-A-M.co.uk> wrote in message
news:uu**************@TK2MSFTNGP10.phx.gbl...
"David" <da*****************@revilloc.REMOVETHIS.com> wrote in message
news:O8**************@TK2MSFTNGP15.phx.gbl...
How can I stop that?


I never found a way to prevent that in v1.x, so I would invariably design
solutions to avoid the situation...

Feb 1 '06 #3
"David" <da*****************@revilloc.REMOVETHIS.com> wrote in message
news:uk**************@tk2msftngp13.phx.gbl...
I hate having to revert to ASP type technology to get around stupid issues
like this.


I know what you mean!

I haven't had a chance to check whether this is fixed in v2 - does anyone
know?
Feb 2 '06 #4
"Mark Rae" <ma**@markN-O-S-P-A-M.co.uk> wrote in message
news:ug**************@TK2MSFTNGP09.phx.gbl...
I haven't had a chance to check whether this is fixed in v2 - does anyone
know?


I can confirm that this has *not* been fixed in ASP.NET v2

Here's how to reproduce it.

1) Create a simple web page with an <asp:DropDownList> and an <asp:Button>

2) Create a SelectedIndexChanged method for the DropDownList and a Command
event for the Button

3) Add any single line of code to each event - just enough so you can set a
breakpoint

4) Populate the DropDownList in the Page_Init method - only a couple of
items will do, just enough to cause the event to fire.

5) Set a breakpoint in the SelectedIndexChanged method and the Command
method

6) Run the page in Debug mode

7) Select a different item in the DropDownList - you jump into its
SelectedIndexChanged method as expected - hit F5 to resume

8) Click the Button - you jump into the DropDownList's SelectedIndexChanged
method before jumping into the Button's Command method - that's bad, at
least, to my way of thinking. I would have expected the Page_Init to fire,
the Page_Load to fire and the Button's Command method to fire. I would have
expected the ViewState to remember the DropDownList's selection, but not its
SelectedIndexChanged method to fire.

Can anyone please confirm that this is a bug?
Feb 5 '06 #5

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

Similar topics

12
by: Stanley J Mroczek | last post by:
How do you load a dropdownlist when edit is clicked in a datagrid ? <Columns> <asp:BoundColumn DataField="OptionDescription" ItemStyle-Wrap="True" HeaderText="Option...
2
by: Dominic | last post by:
Hi guys, I'm not sure if this question belongs to FAQ, but I couldn't find a concrete answer. I created a Datagrid control using ItemTemplate, but it's NOT a in-place editing datagrid. One of...
2
by: Shiju Poyilil | last post by:
Hello, I have a datagrid with only one row and its having 2 dropdownlists, I need to populate the secodn dropdownlist on the basis of the selection in the first dropdown. but I am not able to...
10
by: Sacha Korell | last post by:
I'm trying to load a drop-down list with all DropDownList control names from another page. How would I be able to find those DropDownList controls? The FindControl method will only find a...
15
by: glenn | last post by:
Hi folks, I have a DropDownList in a DataGrid that is populated from records in a database. I want to add a value that might be a string such as "Select a Company" for the first item since an...
1
by: MaryamSh | last post by:
Hi, I am creating a Dynamic Search in my application. I create a user control and in Page_load event I create a dynamic dropdownlist and 2 dynamic button (Add,Remove) By pressing Add button...
0
by: MaryamSh | last post by:
Create Dynamic Dropdownlist Controls and related event -------------------------------------------------------------------------------- Hi, I am creating a Dynamic Search in my application. I...
1
by: Brett | last post by:
I have a DropDownList in an ASP.NET web form that is populated with items from a lookup table by binding that DropDownList to a SqlDataSource. However, the items in the lookup table can change over...
0
by: asmx126453 | last post by:
Hey mensen I am having some big troubles here i tryd solving it myself with internet for 2 days but i kind fix it. Its about this i have a DotNet project that alrydi is online and working for...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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...
0
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...

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.