Greetings,
(I'm a ASP.NET newbie...)
PROBLEM: I can't figure out how to open a new browser window (and display a *.pdf) based on the
property of a
.
Here is my ultra-simple code thus far...
Can someone please clue me in?
(I'm a ASP.NET newbie...)
PROBLEM: I can't figure out how to open a new browser window (and display a *.pdf) based on the
Code:
SelectedItem.Value
Code:
DropDownList
Here is my ultra-simple code thus far...
Code:
<script>
</script>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<form runat="Server">
<asp:DropDownList id="drpExample" AutoPostBack="True" runat="server">
<asp:ListItem Text="file 1" Value="file1.pdf" />
<asp:ListItem Text="file 2" Value="file2.pdf" />
<asp:ListItem Text="file 3" Value="file3.pdf" />
</asp:DropDownList>
</form>
</body>
</html>
Can someone please clue me in?