I have Receiver.ASPX script which seems not to be processed by IIS, as
the browser returns blank page with source containing aprocessed ASPX
script (see below). Can you tell how can I find what is the reason and
how can I fix it ?
Regards,
Maciej
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Receiver.aspx.cs" Inherits="Receiver" %>
<!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">
<div>
<asp:Label ID="Label1" runat=server Text="Agent name to
call:"></asp:Label>
<br />
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:CheckBox ID="Checkbox1" runat="server" Checked=false
Text="Is local?" />
<br />
<br />
<asp:Button ID="Button1" runat="server" Text="Start
Receiver" OnClick="Button1_Click" />
<p>
<asp:Literal ID="Literal1" runat="server"></
asp:Literal>
</p>
</div>
</form>
</body>
</html>