ok this is my scenario. I've never coded in asp.net. I can manipulate it a
little bit because I have some coding knowledge but I don't know what I
am doing so I need help figuring out how to do this.
This is what I'm trying to do...I have this drop down menu that has US jobs in it. I want when a person clicks a state the jobs available in that state appear. The jobs also have to be links. I just want the job title to appear. I have the descriptions and such on individual pages and I don't want to utilize a DB.
Is there a way, when the user selects the state the results are posted back to the user?
For instance I saw the code attached online. Is there a way I can manipulate this and say if the state is Florida print out florida jobs?
<%@ Page Language="C#" %>
<script runat="server">
void page_Load()
{
if(Page.IsPostBack)
{
if(chkIsMember.Checked==true){
lblOut.Text = "Members get a free ticket";
lblOut.BackColor=System.Drawing.Color.LightPink;
}
else if(Convert.ToInt32(txtAge.Text)<=18) {
lblOut.Text = "Students get a free ticket";
lblOut.BackColor=System.Drawing.Color.LightPink;
}else {
lblOut.Text = "Price is 500";
lblOut.BackColor=System.Drawing.Color.LightSeaGreen;
}
}
}
</script>
<html>
<head>
</head>
<body>
<br />
<form runat="server">
Please enter your age
<asp:TextBox id="txtAge" runat="server"></asp:TextBox>
<br />
Are you a member?
<asp:CheckBox id="chkIsMember" runat="server"></asp:CheckBox>
<asp:Button id="Button1" runat="server" Text="Submit"></asp:Button>
<br />
<asp:Label id="lblOut" runat="server"></asp:Label>
<br />
</form>
</body>
</html>