Retrieving Updated List Of Countries States And Cities In A Website?
Mar 4, 2010
I'm trying to create a User Registration page in ASP.NET and wondering what is the best way to get the list of up-to-date Countries and Cities? Are there any Web Services on the web that I can use to retrieve such information? If not, what are the options?
I have a country table that has a list of countries. However, instead of just displaying the list alphabetical, I need to list the United States first, and then all the other countries in Alphabetical order. My select statement is pretty simple, jsut don't know how to get the US listed first...
I need a dropdown to display respective states when specific country is selected similarly for cities. I kept 3 dropdowns for country, state and city with 3 different tables with primary, foreign key constraints and stored procedures. The Stored Procedure is as shown ALTER PROCEDURE [dbo].[Usp_countryselect]
WITH EXECUTE AS CALLER AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SELECT [country_id], [country_name] FROM country Similarly for states and city.
The code for populate lists is as shown
public class PopulateLists { public int FillCountry(ref System.Web.UI.WebControls.DropDownList drpdown) { SqlDatabase db = new SqlDatabase(); DbCommand cmd=db.GetStoredProcCommand("USP_countryselect"); DataSet dsCountry= db.ExecuteDataSet(cmd); drpdown.DataSource =dsCountry.Tables[0] ; drpdown.DataTextField=dsCountry.Tables[0].Columns["country_name"].ToString() ; drpdown.DataValueField = dsCountry.Tables[0].Columns["country_id"].ToString() ; drpdown.DataBind(); return 1; } public int FillState(ref System.Web.UI.WebControls.DropDownList drpdown) { SqlDatabase db = new SqlDatabase(); DbCommand cmd = db.GetStoredProcCommand("USP_statesselect"); DataSet dsStates = db.ExecuteDataSet(cmd); drpdown.DataSource = dsStates.Tables[0]; drpdown.DataTextField = dsStates.Tables[0].Columns["state_name"].ToString(); drpdown.DataValueField = dsStates.Tables[0].Columns["state_id"].ToString(); drpdown.DataBind(); return 1; } . . . } protected void Page_Load(object sender, EventArgs e) { BindDropdowns(); } protected void BindDropdowns() { PopulateLists objPopulateLists = new PopulateLists(); int bytReturn; bytReturn = objPopulateLists.FillCountry(ref Drpcountry); bytReturn = objPopulateLists.FillState(ref Drpstate); bytReturn = objPopulateLists.FillCity(ref Drpcity); }
But in the output screen it is displaying all the values in the dropdowns irrespective of country and state selection.
Im looking for the functionality seen in most commercial websites like google maps to get approximate distance between cities and zip codes. Im guessing these sites are using huge databases with all this information already in them. It would be interesting to learn how to create this functionality myself but Im sure that would require a great deal of time. So Im looking for a package where someone has already done the work(an API) that would allow me to enter two different zip codes or maybe two different city,state combinations and take actions from there.
The task is this: Create custom AJAX method with option to call server side ASPX page and predefined Web Service: a.) Get all cities from ASPX page by given Country Code. For ex. send country code "US" to get a result of a unknown number of cities such as "Washington", "New York", "Houston" etc. with their corresponded ZIP codes (1000, 1100, 1200 etc); b.) Call a web service, posting ZIP code which returns does the code represent palindrome string (A number that reads the same whether written forwards or backwards).
I have 2 listboxes. 1 listbox displays all countries. then I have added 2 buttons, Add and Remove, to add and remove the selected countries from first listbox to second listbox. how can I move selected countries from one list box to another listbox in MVC framework.I am using Linq.
I built a user control that displays a drop down list of states. I'm using it, but if I try to put it in a listview control, all I get is the frop down with nothing in it.
I have a web page, contains dropdownlist loading it with customers table using SQL datasource.
In the same web page i am creating a new customer, on clicking customer add it is creating a new row in customer table but the Customer Dropdown list is not getting updated.
I have added dropdown.databound() in the CustomerAdd button click event after creating the customer in the table.
I am trying to write a web page where i have to select an item form a drop down list.
I am using linq to sql to get the data from the database.the strange thing is that i can register the data to the drop down list but when i select one of them the drop down list lets me to the first item. I set post back = true because i want to update the page every time an item get selected. I wrote a really simple code to check what was going wrong but still...no success. Below i am bringing the code i wrote.
.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication7.WebForm1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
I have a long running asynchronous process which returns a total of around 10-100 results over a 5 minute period. I want to update the page with the progress of the job and also show each result on the page in a list that grows dynamically as results are returned, all without any postback or page refresh.
I am trying hard to update a business object inside a List<>.
I am using a checkbox list
When a checkbox list item is clicked I check if it exists, if yes I mark it as Dirty (means the user unchecks an item)If not, I add a new item to the list (means the user clicks a new item)and store it in view state
How do I update the Generic List with the Dirty Object ? On form update, do I foreach and make separate lists of dirty and new objects to send to DB layer or would you recommend any other way ?
Here is my code.
protected void cblExclusions_SelectedIndexChanged(object sender, EventArgs e) { if (cblExclusions.SelectedIndex != -1) { ftExclusions myExclusion=new ftExclusions(); // Business object
I would like to add code in a program that determines when a website was last updated. Ideally you would give the code a URL of a website and it would return a DateTime that the website was last updated.Is there a way to do this using.NET.
I have a photo website with a login page. (It is an exercise out of a book: Scott Mitchell's "ASP.Net in 24 hours".) After a user logs in he can go to another page and manage photo categories. That page works. I have two users that have photo categories setup in the database.
There is also a page where a user can add photo images. This is the page that is giving me problems. It has a name and description field. (The functionality for uploading a photo is next in the book. It is not on the page yet.) The page also has a dropdown list that is supposed to be populated by the category names of the logged in user. This is the control that is giving me problems. It is not being populated by the logged in user's Category names.
The two database tables used are pretty simple:
[code]....
There are two SQLDataSources on the page:
One is for inserting new photos. The other retrieves the Categories of the current user. The page has a DetailsView with the Photo's Title and Description. There is also a dropdown list with the Category names. It is aa InsertItem Template in DetailsView.
When the page opens, the current UserID is retrieved and put into a Hidden Field. It is then used to retrieve the Category Names by the second SQLDataSource. I have gone through the book's steps a few times now. The dropdown list is not being populated. I am not getting any errors.
How can I track down why the dropdown list is not being populated?
Both of my users have Category values set up in the database. So, the dropdown list has values that should be appearing.
I have a ListView inside my UserControl which is showing a list of posts from the table named posts. I've also got a category table which is full of the categories. I then have another table which contains the PostID and the CategoryID so that posts can have multiple categories. I was wondering, in my ListView at the moment I only have a list of the posts but I would like to add, for every post in the listview, the cateogires it is in.
Is it possible to retrieve/get the html source code of a certain website and use it in a ASP.NET web application to display them? (without using the copy-paste, of course)
I want my ASP.NET web application to use them as part of a code sample feature I currently working on.
m trying fill the combo box from cities database but i wan the metropolitan cities at the top of the selection menu i have used this approach i there any alternative??