You need to make the values (the link part) unique or you'll encounter that
problem. You might be able to accomplish this through a little trickery such
as:

<asp:dropdownlist id="DropDownList1" runat="server">
<asp:listitem value="http://www.gc.ca/">One</asp:listitem>
<asp:listitem value="http://www.gc.ca/?">Two</asp:listitem>
<asp:listitem value="http://www.gc.ca/#">Three</asp:listitem>
</asp:dropdownlist></p>

Ken

MVP [ASP.NET]

"Edwin A. Reyes" <eareyez@yahoo.com> wrote in message
news:031e01c34b0f$0984b2f0$a401280a@phx.gbl...
Hello,

The reason why I am e-mailing you is becuase I am going on
a project. I am using ASP.NET. The problem that I am
having is that I created a DropDownList and Loaded
different states. Each state has his own location and an
link to inform the user about that the location and what
provides.Now As long as the state does not share the same
link it work fine but if more than one state uses the same
link it goes back to last time it resgister that link into
memory.And the infomation is displayed fine but the
selection of the state does not stay.If you can help me
with this problem that will be great. Thanks in advance.

Edwin A. Reyes