ASP.NET

I

Irfan

In my application I have two dropdwonlists. One displays list of countries
and other diplays list of business for the selected country. I am getting
list of countries and business from the webservice. When I select a Country
e.g. "India" the business dropdwonlist is getting filled with the names of
business in India for my company. When a user from India is selecting
"India" from the country dropdwonlist , the business dropdwonlist is empty.
The application is built on .NET 2.0 c#, adn sql server2005

I am accessing this application from physically from USA. the other user is
accessing it physically from India.

Please help me.

Thanks in advance
 
P

parez

In my application I have two dropdwonlists. One displays list of countries
and other diplays list of business for the selected country. I am getting
list of countries and business from the webservice. When I select a Country
e.g. "India" the business dropdwonlist is getting filled with the names of
business in India for my company. When a user from India is selecting
"India" from the country dropdwonlist , the business dropdwonlist is empty.
The application is built on .NET 2.0 c#, adn sql server2005

I am accessing this application from physically from USA. the other user is
accessing it physically from India.

Please help me.

Thanks in advance

You mite want to check the browser version of the client in india.
 
S

sloan

Ooops. I didn't see the subject line.


I usually put a little "Go" button next to the dropdownlist.

I think the issue is that when you have India selected, and you want India,
the event doesn't fire.

The best thing is is track the Page_Load and Page.IsPostBack. And if the
selection isn't triggering a postback, it won't work naturally.

...
 
A

Alberto Poblacion

Irfan said:
In my application I have two dropdwonlists. One displays list of countries
and other diplays list of business for the selected country. I am getting
list of countries and business from the webservice. When I select a
Country
e.g. "India" the business dropdwonlist is getting filled with the names of
business in India for my company. When a user from India is selecting
"India" from the country dropdwonlist , the business dropdwonlist is
empty.
The application is built on .NET 2.0 c#, adn sql server2005

I suspect that you are using AutoPostBack for the dropdwnlist that
contains the countries. This will only work if the browser has javascript
enabled. For those browsers that don't support javascript, or where
javascript has been disabled (which I suspect is the case for your user in
India), you need to provide an alternate way to cause the page to produce a
postback. One way to do it, as someone else has already suggested, is to add
a submit button next to the dropdownlist.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top