Posted on: 5/25/2011 1:19:41 PM | Views : 659

what im trying to do is have a dropdownlist with items and when i select one of those items have the page display in the iframe.
Im having a problem getting this code to work correctly, Im a newbie and self teaching myself, anyway here is the code:
test2.aspx
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 
            onselectedindexchanged="DropDownList1_SelectedIndexChanged">
    ...

Go to the complete details ...