hi,
there, im coming up with a page where manager can request for annual, monthly,weekly and daily report. However, ive got a error message as below:
Parser Error Message: The file '/asp.net christine/Default.aspx.vb' does not exist.
Source Error:
Line 1: <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
The whole page codes are as below:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!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>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<br >
<asp:Label ID="lblReport" runat="server" Text="Type of Report"></asp:Label>
<asp:DropDownList ID="ddlReport" runat="server">
<asp:ListItem Selected="True" Value='Annually'>Annually</asp:ListItem>
<asp:ListItem >Monthly</asp:ListItem>
<asp:ListItem>Weekly</asp:ListItem>
<asp:ListItem>Daily</asp:ListItem>
</asp:DropDownList>
<br />
Number of Parcels:
<asp:TextBox ID="txtnumOfParcels" runat="server"></asp:TextBox>
<br />
Rate Of Profit:
<asp:TextBox ID="txtRate" runat="server"></asp:TextBox>
<div>
</div>
</form>
</body>
</html>
please help.
At the same time at the dropdownlist, i don't know how to code if i want to go to the page i want according to monthly, daily, weekly and annual report. I dont know how to set up the code.