Showing posts with label ASP.NET. Show all posts
Showing posts with label ASP.NET. Show all posts

Monday, January 28, 2013

Send Email using ASP.NET C#

How to send email using asp.net
In this article I will explain how to send email using asp.net.

Description:

In realtime we will use gmail,yahoo,hotmail etc to send mails to particular user here I will show to how to implement mail sending concept in asp.net.

To implement mail concept in asp.net first we need to add following reference to our applicationSystem.Web.Mail namespace 

What is System.Web.Mail

System.Web.Mail is a namespace which contains classes that enable us to construct and send messages using the CDOSYS (Collaboration Data Objects for Windows 2000) message component. The mail message is delivered either through the SMTP mail service built into Microsoft Windows 2000 or through an arbitrary SMTP server.

How we can get this reference (System.Web.Mail

We need to add System.web.dll reference to our application for that follow below steps

a                 a)  On the Project menu, click Add Reference.
b)    On the .NET tab, locate System.Web.dll, and then click Select.
c)     Click OK in the Add References.

After that design your aspx page like this


<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Send Mail using asp.net</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<table style=" border:1px solid" align="center">
<tr>
<td colspan="2" align="center">
<b>Send Mail using asp.net</b>
</td>
</tr>
<tr>
<td>
From:
</td>
<td>
<asp:TextBox ID="txtFrom" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
Subject:
</td>
<td>
<asp:TextBox ID="txtSubject" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
To:
</td>
<td>
<asp:TextBox ID="txtTo" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td valign="top">
Body:
</td>
<td>
<asp:TextBox ID="txtBody" runat="server" TextMode="MultiLine" Columns="30" Rows="10" ></asp:TextBox>
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:Button ID="btnSubmit" Text="Send" runat="server" onclick="btnSubmit_Click" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
Now add following namcespaces in your codebehind



using System.Web.Mail;
After that write the following code in button click



protected void btnSubmit_Click(object sender, EventArgs e)
{
try
{
MailMessage Msg = new MailMessage();
// Sender e-mail address.
Msg.From = txtFrom.Text;
// Recipient e-mail address.
Msg.To = txtTo.Text;
Msg.Subject = txtSubject.Text;
Msg.Body = txtBody.Text;
// your remote SMTP server IP.
SmtpMail.SmtpServer = "10.20.72.1";
SmtpMail.Send(Msg);
Msg = null;
Page.RegisterStartupScript("UserMsg""<script>alert('Mail sent thank you...');if(alert){ window.location='SendMail.aspx';}</script>");
}
catch (Exception ex)
{
Console.WriteLine("{0} Exception caught.", ex);
}
}
Here use your SMTP server address then only it will work for you and check mails in spam also because sometimes mails should be appear in spam folder also.



Demo





Website Navigation in ASP.NET

How to Navigate webpage in ASP.NET

When you have multiple pages in your application you can use simple website navigation features provided in ASP.NET. These features allow you to show an easy way to your user to navigate through website pages. Moreover, users can see path of the website, the current page where the user is standing at this time, the previous page from where the user came to this page and the root or home page of the website. So user can move easily between web pages of a website when website navigation is used. ASP.NET built-in site navigation features are really the simple way to deal with website navigation.   

Web.sitemap File

ASP.NET provides a consistent way of website navigation. It provides a file to store your page titles and links and you can bind this file to ASP.NET controls for website navigation. It is an XML file provided in ASP.NET with .sitemap extension. It organizes website pages links in a hierarchical navigational structure. There can be more than one sitemap files but commonly there is only one for a website. If there are more than one sitemap file for a website than the other sitemap files are referenced in a siteMapNode of a web.sitemap file. This file is located at the root of the website and always saved with Web.sitemap name. Web.sitemap file is always saved in XML formatting.

Navigation Controls

ASP.NET provides navigation controls for website navigation purposes.

Menu Control

Menu Control is used for both static and dynamic display of website menus. You can bind SiteMapDataSource to menu control to display navigational menu of the website. Menu control can be customized using template tags. Menu control provides great control to work with sitemap infrastructure.

Static and Dynamic Display
Static and dynamic display can be handled using StaticDisplayLevels and MaximumDynamicDisplayLevels properties of Menu control.

Appearance

Orientation property of Menu control is used to set the appearance vertical or horizontal.  You can also set dynamic appearance time by using DisappearAfter property.

TreeView Control
TreeView is the most popular control to display hierarchical data. It displays sitemap links of a website in a root-parent-leaf structure. TreeView nodes can be programmatically created or you can bind SiteMapDataSource or XMLDataSource to TreeView control. It can also be customized using template tags.

Root Node: A root node in TreeView control is the node that has no parent node and one or more child nodes.
Parent Node: A node should have one or more child nodes to become a parent node.
Leaf Node: Leaf node is a node that has no child node.

SiteMapPath Control
It represents the path of the navigation of your website. It shows the current location of the website and shows the links of the previous pages back to the home or root page. So SiteMapPath control navigates the user backwards and it doesn’t allow going forwards. You don’t have to bind data to SiteMapPath control; it obtains data directly from web.sitemap file and displays the titles of the pages. You can click on the title in SiteMapPath control to go to that page of the website.  Normally it works with other navigation controls but you can use it alone in your website.

  1. Create a new Empty Web Site in Visual Studio 2010 either in Visual Basic or Visual C#.
  2. Add a master page to the website.
  3. Add a Site Map file in the Web Site and write code below.
    <?xml version="1.0" encoding="utf-8" ?>
    <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
           <siteMapNode url="Home.aspx" title="Home" description="Home Page">
                  <siteMapNode url="About.aspx" title="About Us" description="">
                  </siteMapNode>
                  <siteMapNode url="Products.aspx" title="Our Products" description="All Products">
                         <siteMapNode url="ComputerProducts.aspx" title="Computer" description="Computer Products" />
                         <siteMapNode url="ElectronicsProducts.aspx" title="Electronics" description="Electronics" />
                  </siteMapNode>
                  <siteMapNode url="Customers.aspx" title="Our Customers" description="Customer List">
                         <siteMapNode url="AmericanCustomers.aspx" title="American Customers" description="American Customers List" />
                         <siteMapNode url="EuropeanCustomers.aspx" title="European Customers" description="European Customers List" />
                  </siteMapNode>
                  <siteMapNode url="Contact.aspx" title="Contact Us" description="">
                  </siteMapNode>
           </siteMapNode>
    </siteMap>
    Web.siteMap file has a root node with title “Home” and it has other nodes like “About Us”, “Products”, “Customers” and “Contact Us” as its child nodes. “Product” and “Customers” have their own child nodes so these are parent nodes. “About Us”, “Contact Us” are leaf nodes because these have no child nodes. 
     
  4. Add ten Web Forms in the Web Site and select master page. Rename the pages as we have mentioned in Web.sitemap file.
  5. Open master page and drag and drop a SiteMapDataSource, a SiteMapPath and a Menu.
  6. Configure SiteMapDataSource from little arrow at the top and choose SiteMapDataSource for TreeView
    <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" />
    <asp:SiteMapPath ID="SiteMapPath1" runat="server">
    </asp:SiteMapPath>
    <br />
    <asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1">
    </asp:Menu>

     
  7. Now you can view Web Site in browser.



Friday, August 24, 2012

ASP NET DROPDOWN LIST OF COUNTRY NAMES


ASP net dropdown list with country name. You can add this bit of code in your ASP net form for selecting countries
 
 
<asp:DropDownList id="Country" runat="server" Height="25px" Width="160px">  <asp:ListItem Value="" Selected=true>Select Country</asp:ListItem>  <asp:ListItem Value="AF">Afghanistan</asp:ListItem>  <asp:ListItem Value="AL">Albania</asp:ListItem>  <asp:ListItem Value="DZ">Algeria</asp:ListItem>  <asp:ListItem Value="AS">American Samoa</asp:ListItem>  <asp:ListItem Value="AD">Andorra</asp:ListItem>  <asp:ListItem Value="AO">Angola</asp:ListItem>  <asp:ListItem Value="AI">Anguilla</asp:ListItem>  <asp:ListItem Value="AQ">Antarctica</asp:ListItem>  <asp:ListItem Value="AG">Antigua And Barbuda</asp:ListItem>  <asp:ListItem Value="AR">Argentina</asp:ListItem>  <asp:ListItem Value="AM">Armenia</asp:ListItem>  <asp:ListItem Value="AW">Aruba</asp:ListItem>  <asp:ListItem Value="AU">Australia</asp:ListItem>  <asp:ListItem Value="AT">Austria</asp:ListItem>  <asp:ListItem Value="AZ">Azerbaijan</asp:ListItem>  <asp:ListItem Value="BS">Bahamas</asp:ListItem>  <asp:ListItem Value="BH">Bahrain</asp:ListItem>  <asp:ListItem Value="BD">Bangladesh</asp:ListItem>  <asp:ListItem Value="BB">Barbados</asp:ListItem>  <asp:ListItem Value="BY">Belarus</asp:ListItem>  <asp:ListItem Value="BE">Belgium</asp:ListItem>  <asp:ListItem Value="BZ">Belize</asp:ListItem>  <asp:ListItem Value="BJ">Benin</asp:ListItem>  <asp:ListItem Value="BM">Bermuda</asp:ListItem>  <asp:ListItem Value="BT">Bhutan</asp:ListItem>  <asp:ListItem Value="BO">Bolivia</asp:ListItem>  <asp:ListItem Value="BA">Bosnia And Herzegowina</asp:ListItem>  <asp:ListItem Value="BW">Botswana</asp:ListItem>  <asp:ListItem Value="BV">Bouvet Island</asp:ListItem>  <asp:ListItem Value="BR">Brazil</asp:ListItem>  <asp:ListItem Value="IO">British Indian Ocean Territory</asp:ListItem>  <asp:ListItem Value="BN">Brunei Darussalam</asp:ListItem>  <asp:ListItem Value="BG">Bulgaria</asp:ListItem>  <asp:ListItem Value="BF">Burkina Faso</asp:ListItem>  <asp:ListItem Value="BI">Burundi</asp:ListItem>  <asp:ListItem Value="KH">Cambodia</asp:ListItem>  <asp:ListItem Value="CM">Cameroon</asp:ListItem>  <asp:ListItem Value="CA">Canada</asp:ListItem>  <asp:ListItem Value="CV">Cape Verde</asp:ListItem>  <asp:ListItem Value="KY">Cayman Islands</asp:ListItem>  <asp:ListItem Value="CF">Central African Republic</asp:ListItem>  <asp:ListItem Value="TD">Chad</asp:ListItem>  <asp:ListItem Value="CL">Chile</asp:ListItem>  <asp:ListItem Value="CN">China</asp:ListItem>  <asp:ListItem Value="CX">Christmas Island</asp:ListItem>  <asp:ListItem Value="CC">Cocos (Keeling) Islands</asp:ListItem>  <asp:ListItem Value="CO">Colombia</asp:ListItem>  <asp:ListItem Value="KM">Comoros</asp:ListItem>  <asp:ListItem Value="CG">Congo</asp:ListItem>  <asp:ListItem Value="CK">Cook Islands</asp:ListItem>  <asp:ListItem Value="CR">Costa Rica</asp:ListItem>  <asp:ListItem Value="CI">Cote D'Ivoire</asp:ListItem>  <asp:ListItem Value="HR">Croatia (Local Name: Hrvatska)</asp:ListItem>  <asp:ListItem Value="CU">Cuba</asp:ListItem>  <asp:ListItem Value="CY">Cyprus</asp:ListItem>  <asp:ListItem Value="CZ">Czech Republic</asp:ListItem>  <asp:ListItem Value="DK">Denmark</asp:ListItem>  <asp:ListItem Value="DJ">Djibouti</asp:ListItem>  <asp:ListItem Value="DM">Dominica</asp:ListItem>  <asp:ListItem Value="DO">Dominican Republic</asp:ListItem>  <asp:ListItem Value="TP">East Timor</asp:ListItem>  <asp:ListItem Value="EC">Ecuador</asp:ListItem>  <asp:ListItem Value="EG">Egypt</asp:ListItem>  <asp:ListItem Value="SV">El Salvador</asp:ListItem>  <asp:ListItem Value="GQ">Equatorial Guinea</asp:ListItem>  <asp:ListItem Value="ER">Eritrea</asp:ListItem>  <asp:ListItem Value="EE">Estonia</asp:ListItem>  <asp:ListItem Value="ET">Ethiopia</asp:ListItem>  <asp:ListItem Value="FK">Falkland Islands (Malvinas)</asp:ListItem>  <asp:ListItem Value="FO">Faroe Islands</asp:ListItem>  <asp:ListItem Value="FJ">Fiji</asp:ListItem>  <asp:ListItem Value="FI">Finland</asp:ListItem>  <asp:ListItem Value="FR">France</asp:ListItem>  <asp:ListItem Value="GF">French Guiana</asp:ListItem>  <asp:ListItem Value="PF">French Polynesia</asp:ListItem>  <asp:ListItem Value="TF">French Southern Territories</asp:ListItem>  <asp:ListItem Value="GA">Gabon</asp:ListItem>  <asp:ListItem Value="GM">Gambia</asp:ListItem>  <asp:ListItem Value="GE">Georgia</asp:ListItem>  <asp:ListItem Value="DE">Germany</asp:ListItem>  <asp:ListItem Value="GH">Ghana</asp:ListItem>  <asp:ListItem Value="GI">Gibraltar</asp:ListItem>  <asp:ListItem Value="GR">Greece</asp:ListItem>  <asp:ListItem Value="GL">Greenland</asp:ListItem>  <asp:ListItem Value="GD">Grenada</asp:ListItem>  <asp:ListItem Value="GP">Guadeloupe</asp:ListItem>  <asp:ListItem Value="GU">Guam</asp:ListItem>  <asp:ListItem Value="GT">Guatemala</asp:ListItem>  <asp:ListItem Value="GN">Guinea</asp:ListItem>  <asp:ListItem Value="GW">Guinea-Bissau</asp:ListItem>  <asp:ListItem Value="GY">Guyana</asp:ListItem>  <asp:ListItem Value="HT">Haiti</asp:ListItem>  <asp:ListItem Value="HM">Heard And Mc Donald Islands</asp:ListItem>  <asp:ListItem Value="VA">Holy See (Vatican City State)</asp:ListItem>  <asp:ListItem Value="HN">Honduras</asp:ListItem>  <asp:ListItem Value="HK">Hong Kong</asp:ListItem>  <asp:ListItem Value="HU">Hungary</asp:ListItem>  <asp:ListItem Value="IS">Icel And</asp:ListItem>  <asp:ListItem Value="IN">India</asp:ListItem>  <asp:ListItem Value="ID">Indonesia</asp:ListItem>  <asp:ListItem Value="IR">Iran (Islamic Republic Of)</asp:ListItem>  <asp:ListItem Value="IQ">Iraq</asp:ListItem>  <asp:ListItem Value="IE">Ireland</asp:ListItem>  <asp:ListItem Value="IL">Israel</asp:ListItem>  <asp:ListItem Value="IT">Italy</asp:ListItem>  <asp:ListItem Value="JM">Jamaica</asp:ListItem>  <asp:ListItem Value="JP">Japan</asp:ListItem>  <asp:ListItem Value="JO">Jordan</asp:ListItem>  <asp:ListItem Value="KZ">Kazakhstan</asp:ListItem>  <asp:ListItem Value="KE">Kenya</asp:ListItem>  <asp:ListItem Value="KI">Kiribati</asp:ListItem>  <asp:ListItem Value="KP">Korea, Dem People'S Republic</asp:ListItem>  <asp:ListItem Value="KR">Korea, Republic Of</asp:ListItem>  <asp:ListItem Value="KW">Kuwait</asp:ListItem>  <asp:ListItem Value="KG">Kyrgyzstan</asp:ListItem>  <asp:ListItem Value="LA">Lao People'S Dem Republic</asp:ListItem>  <asp:ListItem Value="LV">Latvia</asp:ListItem>  <asp:ListItem Value="LB">Lebanon</asp:ListItem>  <asp:ListItem Value="LS">Lesotho</asp:ListItem>  <asp:ListItem Value="LR">Liberia</asp:ListItem>  <asp:ListItem Value="LY">Libyan Arab Jamahiriya</asp:ListItem>  <asp:ListItem Value="LI">Liechtenstein</asp:ListItem>  <asp:ListItem Value="LT">Lithuania</asp:ListItem>  <asp:ListItem Value="LU">Luxembourg</asp:ListItem>  <asp:ListItem Value="MO">Macau</asp:ListItem>  <asp:ListItem Value="MK">Macedonia</asp:ListItem>  <asp:ListItem Value="MG">Madagascar</asp:ListItem>  <asp:ListItem Value="MW">Malawi</asp:ListItem>  <asp:ListItem Value="MY">Malaysia</asp:ListItem>  <asp:ListItem Value="MV">Maldives</asp:ListItem>  <asp:ListItem Value="ML">Mali</asp:ListItem>  <asp:ListItem Value="MT">Malta</asp:ListItem>  <asp:ListItem Value="MH">Marshall Islands</asp:ListItem>  <asp:ListItem Value="MQ">Martinique</asp:ListItem>  <asp:ListItem Value="MR">Mauritania</asp:ListItem>  <asp:ListItem Value="MU">Mauritius</asp:ListItem>  <asp:ListItem Value="YT">Mayotte</asp:ListItem>  <asp:ListItem Value="MX">Mexico</asp:ListItem>  <asp:ListItem Value="FM">Micronesia, Federated States</asp:ListItem>  <asp:ListItem Value="MD">Moldova, Republic Of</asp:ListItem>  <asp:ListItem Value="MC">Monaco</asp:ListItem>  <asp:ListItem Value="MN">Mongolia</asp:ListItem>  <asp:ListItem Value="MS">Montserrat</asp:ListItem>  <asp:ListItem Value="MA">Morocco</asp:ListItem>  <asp:ListItem Value="MZ">Mozambique</asp:ListItem>  <asp:ListItem Value="MM">Myanmar</asp:ListItem>  <asp:ListItem Value="NA">Namibia</asp:ListItem>  <asp:ListItem Value="NR">Nauru</asp:ListItem>  <asp:ListItem Value="NP">Nepal</asp:ListItem>  <asp:ListItem Value="NL">Netherlands</asp:ListItem>  <asp:ListItem Value="AN">Netherlands Ant Illes</asp:ListItem>  <asp:ListItem Value="NC">New Caledonia</asp:ListItem>  <asp:ListItem Value="NZ">New Zealand</asp:ListItem>  <asp:ListItem Value="NI">Nicaragua</asp:ListItem>  <asp:ListItem Value="NE">Niger</asp:ListItem>  <asp:ListItem Value="NG">Nigeria</asp:ListItem>  <asp:ListItem Value="NU">Niue</asp:ListItem>  <asp:ListItem Value="NF">Norfolk Island</asp:ListItem>  <asp:ListItem Value="MP">Northern Mariana Islands</asp:ListItem>  <asp:ListItem Value="NO">Norway</asp:ListItem>  <asp:ListItem Value="OM">Oman</asp:ListItem>  <asp:ListItem Value="PK">Pakistan</asp:ListItem>  <asp:ListItem Value="PW">Palau</asp:ListItem>  <asp:ListItem Value="PA">Panama</asp:ListItem>  <asp:ListItem Value="PG">Papua New Guinea</asp:ListItem>  <asp:ListItem Value="PY">Paraguay</asp:ListItem>  <asp:ListItem Value="PE">Peru</asp:ListItem>  <asp:ListItem Value="PH">Philippines</asp:ListItem>  <asp:ListItem Value="PN">Pitcairn</asp:ListItem>  <asp:ListItem Value="PL">Poland</asp:ListItem>  <asp:ListItem Value="PT">Portugal</asp:ListItem>  <asp:ListItem Value="PR">Puerto Rico</asp:ListItem>  <asp:ListItem Value="QA">Qatar</asp:ListItem>  <asp:ListItem Value="RE">Reunion</asp:ListItem>  <asp:ListItem Value="RO">Romania</asp:ListItem>  <asp:ListItem Value="RU">Russian Federation</asp:ListItem>  <asp:ListItem Value="RW">Rwanda</asp:ListItem>  <asp:ListItem Value="KN">Saint K Itts And Nevis</asp:ListItem>  <asp:ListItem Value="LC">Saint Lucia</asp:ListItem>  <asp:ListItem Value="VC">Saint Vincent, The Grenadines</asp:ListItem>  <asp:ListItem Value="WS">Samoa</asp:ListItem>  <asp:ListItem Value="SM">San Marino</asp:ListItem>  <asp:ListItem Value="ST">Sao Tome And Principe</asp:ListItem>  <asp:ListItem Value="SA">Saudi Arabia</asp:ListItem>  <asp:ListItem Value="SN">Senegal</asp:ListItem>  <asp:ListItem Value="SC">Seychelles</asp:ListItem>  <asp:ListItem Value="SL">Sierra Leone</asp:ListItem>  <asp:ListItem Value="SG">Singapore</asp:ListItem>  <asp:ListItem Value="SK">Slovakia (Slovak Republic)</asp:ListItem>  <asp:ListItem Value="SI">Slovenia</asp:ListItem>  <asp:ListItem Value="SB">Solomon Islands</asp:ListItem>  <asp:ListItem Value="SO">Somalia</asp:ListItem>  <asp:ListItem Value="ZA">South Africa</asp:ListItem>  <asp:ListItem Value="GS">South Georgia , S Sandwich Is.</asp:ListItem>  <asp:ListItem Value="ES">Spain</asp:ListItem>  <asp:ListItem Value="LK">Sri Lanka</asp:ListItem>  <asp:ListItem Value="SH">St. Helena</asp:ListItem>  <asp:ListItem Value="PM">St. Pierre And Miquelon</asp:ListItem>  <asp:ListItem Value="SD">Sudan</asp:ListItem>  <asp:ListItem Value="SR">Suriname</asp:ListItem>  <asp:ListItem Value="SJ">Svalbard, Jan Mayen Islands</asp:ListItem>  <asp:ListItem Value="SZ">Sw Aziland</asp:ListItem>  <asp:ListItem Value="SE">Sweden</asp:ListItem>  <asp:ListItem Value="CH">Switzerland</asp:ListItem>  <asp:ListItem Value="SY">Syrian Arab Republic</asp:ListItem>  <asp:ListItem Value="TW">Taiwan</asp:ListItem>  <asp:ListItem Value="TJ">Tajikistan</asp:ListItem>  <asp:ListItem Value="TZ">Tanzania, United Republic Of</asp:ListItem>  <asp:ListItem Value="TH">Thailand</asp:ListItem>  <asp:ListItem Value="TG">Togo</asp:ListItem>  <asp:ListItem Value="TK">Tokelau</asp:ListItem>  <asp:ListItem Value="TO">Tonga</asp:ListItem>  <asp:ListItem Value="TT">Trinidad And Tobago</asp:ListItem>  <asp:ListItem Value="TN">Tunisia</asp:ListItem>  <asp:ListItem Value="TR">Turkey</asp:ListItem>  <asp:ListItem Value="TM">Turkmenistan</asp:ListItem>  <asp:ListItem Value="TC">Turks And Caicos Islands</asp:ListItem>  <asp:ListItem Value="TV">Tuvalu</asp:ListItem>  <asp:ListItem Value="UG">Uganda</asp:ListItem>  <asp:ListItem Value="UA">Ukraine</asp:ListItem>  <asp:ListItem Value="AE">United Arab Emirates</asp:ListItem>  <asp:ListItem Value="GB">United Kingdom</asp:ListItem>  <asp:ListItem Value="US">United States</asp:ListItem>  <asp:ListItem Value="UM">United States Minor Is.</asp:ListItem>  <asp:ListItem Value="UY">Uruguay</asp:ListItem>  <asp:ListItem Value="UZ">Uzbekistan</asp:ListItem>  <asp:ListItem Value="VU">Vanuatu</asp:ListItem>  <asp:ListItem Value="VE">Venezuela</asp:ListItem>  <asp:ListItem Value="VN">Viet Nam</asp:ListItem>  <asp:ListItem Value="VG">Virgin Islands (British)</asp:ListItem>  <asp:ListItem Value="VI">Virgin Islands (U.S.)</asp:ListItem>  <asp:ListItem Value="WF">Wallis And Futuna Islands</asp:ListItem>  <asp:ListItem Value="EH">Western Sahara</asp:ListItem>  <asp:ListItem Value="YE">Yemen</asp:ListItem>  <asp:ListItem Value="YU">Yugoslavia</asp:ListItem>  <asp:ListItem Value="ZR">Zaire</asp:ListItem>  <asp:ListItem Value="ZM">Zambia</asp:ListItem>  <asp:ListItem Value="ZW">Zimbabwe</asp:ListItem>  </asp:DropDownList>