473,569 Members | 2,402 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

DropdownList autopostback in usercontrol not working for ASP.NET 1

sri
I have a usercontrol that has the dropdownlist which has Autopostback set to
true. The selectedindex changed event is not getting fired from IE if the
production webserver has ASP.NET 1.1.4322.573 (without SP1). The same code
works fine on Navigator and FireFox browsers hitting the same production
server.

Also, the same code works on all browsers with the dev webserver that has
ASP.NET 1.1 SP1 (1.1.4322.2032) installed.

On the first server, Could it be not working on IE because of the missing
SP1 ? Or could it be some other issue?

I need to do this analysis because the IT team that manages the production
server needs a detailed analysis of any updates to production.

regards
srividhya
Nov 19 '05 #1
5 2394
this help:

http://www.aspfree.com/c/a/ASP/Consu...vice-from-ASP/
"sri" <sr*@discussion s.microsoft.com > wrote in message
news:C9******** *************** ***********@mic rosoft.com...
I have a usercontrol that has the dropdownlist which has Autopostback set
to
true. The selectedindex changed event is not getting fired from IE if the
production webserver has ASP.NET 1.1.4322.573 (without SP1). The same
code
works fine on Navigator and FireFox browsers hitting the same production
server.

Also, the same code works on all browsers with the dev webserver that has
ASP.NET 1.1 SP1 (1.1.4322.2032) installed.

On the first server, Could it be not working on IE because of the missing
SP1 ? Or could it be some other issue?

I need to do this analysis because the IT team that manages the production
server needs a detailed analysis of any updates to production.

regards
srividhya

Nov 19 '05 #2
Sorry about that, replied to the wrong post there
"sri" <sr*@discussion s.microsoft.com > wrote in message
news:C9******** *************** ***********@mic rosoft.com...
I have a usercontrol that has the dropdownlist which has Autopostback set
to
true. The selectedindex changed event is not getting fired from IE if the
production webserver has ASP.NET 1.1.4322.573 (without SP1). The same
code
works fine on Navigator and FireFox browsers hitting the same production
server.

Also, the same code works on all browsers with the dev webserver that has
ASP.NET 1.1 SP1 (1.1.4322.2032) installed.

On the first server, Could it be not working on IE because of the missing
SP1 ? Or could it be some other issue?

I need to do this analysis because the IT team that manages the production
server needs a detailed analysis of any updates to production.

regards
srividhya

Nov 19 '05 #3
You might need to install/reinstall the client side files

go into you Visual Studio cmd prompt and run

aspnet_regiis -c

This will install the client side files into all virtual directories in IIS

HTH
"sri" <sr*@discussion s.microsoft.com > wrote in message
news:C9******** *************** ***********@mic rosoft.com...
I have a usercontrol that has the dropdownlist which has Autopostback set
to
true. The selectedindex changed event is not getting fired from IE if the
production webserver has ASP.NET 1.1.4322.573 (without SP1). The same
code
works fine on Navigator and FireFox browsers hitting the same production
server.

Also, the same code works on all browsers with the dev webserver that has
ASP.NET 1.1 SP1 (1.1.4322.2032) installed.

On the first server, Could it be not working on IE because of the missing
SP1 ? Or could it be some other issue?

I need to do this analysis because the IT team that manages the production
server needs a detailed analysis of any updates to production.

regards
srividhya

Nov 19 '05 #4
You can try re-installing the script but at the same time are you
passing the right handles to fire in your DropDownList?
..
Patrick

*** Sent via Developersdex http://www.developersdex.com ***
Nov 19 '05 #5
sri
I will definitely try reinstalling client side files.

Thank you very much for the suggestion.

sri.

"Grant Merwitz" wrote:
You might need to install/reinstall the client side files

go into you Visual Studio cmd prompt and run

aspnet_regiis -c

This will install the client side files into all virtual directories in IIS

HTH
"sri" <sr*@discussion s.microsoft.com > wrote in message
news:C9******** *************** ***********@mic rosoft.com...
I have a usercontrol that has the dropdownlist which has Autopostback set
to
true. The selectedindex changed event is not getting fired from IE if the
production webserver has ASP.NET 1.1.4322.573 (without SP1). The same
code
works fine on Navigator and FireFox browsers hitting the same production
server.

Also, the same code works on all browsers with the dev webserver that has
ASP.NET 1.1 SP1 (1.1.4322.2032) installed.

On the first server, Could it be not working on IE because of the missing
SP1 ? Or could it be some other issue?

I need to do this analysis because the IT team that manages the production
server needs a detailed analysis of any updates to production.

regards
srividhya


Nov 19 '05 #6

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

Similar topics

5
4385
by: bryanp10 | last post by:
I have a page that is almost entirely dynamically created. Textboxes and checkbox are working fine, firing events, and persistent their state. DropDownList is giving me a major headache. All my controls are created in CreateChildControls() for my custom control. Here's a snippet of code: DropDownList dd = new DropDownList(); dd.ID =...
2
1836
by: rt | last post by:
hi, iam a having a datagrid, pls check the code ---- Public WithEvents bgt As System.Web.UI.WebControls.DropDownList ---
3
1455
by: Kim | last post by:
I have a user control with 3 dropdownlist when a user selects the first listbox based on his/her selection the 2 listbox will load based off the users selection from the 2nd listbox the 3rd listbox will load. My problem is the first listbox works but when the user selects the 2nd listbox the event fires but not in the selectedindexchange...
2
3258
by: studio60podcast | last post by:
I'm not sure I can do this, but here is what I'm trying to accomplish... I have a WebUserControl that has a single control - a DropDownList - called BoundDL. In that control, I have methods that will bind that control to a DataTable based on other properties that are set. I have another page, test.aspx, that registers this UserControl...
0
3725
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 dropdownlist uses that control's selected value to drive what it shows. They're all set to autopostback. Everything works fine except where one of...
5
2173
by: revbart | last post by:
Yep, that's me. I'll bet I've read a hundred articles somewhere or another, but I just can't get the thing to work. I'm working on a custom solution. One of the major UIs includes a calendar-style presentation. The navigation controls at the top of the calendar include four LinkButton controls (prevYear, prevMonth, nextMonth, nextYear) and two...
1
4645
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 ,another row will be created with the same control (I mean another dropdown and 2 button) and so on. and by pressing Remove button the selecetd row will be...
0
3486
by: MaryamSh | last post by:
Create Dynamic Dropdownlist Controls and related event -------------------------------------------------------------------------------- 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 ,another row...
0
1928
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 almost everything. but it whas made in Visual Studio 7 and i converted it to 2005. in version 7 it works almost perfect but in 2005 i am having some...
0
7703
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7618
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8138
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7983
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6287
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5223
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3657
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3647
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1228
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.