H
Habib
Hi,
I have a very simple example ASPX file.
<% @Page Language="C#" debug="true" %>
<html>
<script runat = "server">
void Page_Load(Object Sender, EventArgs e)
{
Response.Write("ASPX-Example!<br>");
}
</script>
<body>
<form runat="server">
<asp:label id="nlLabel" text="Company" runat="server" />
<asp:Textbox id="txtBox" runat="server" />
</form>
</body>
</html>
If i call the site directly i.e. without proxy (http://myLocalHost/myApp) it
works fine. If i call it through proxy of company
(http://www.myCompany.com/myApp), the browser returns "HTTP 404 - File not
found".
What is here wrong.
Thanks
Habib
I have a very simple example ASPX file.
<% @Page Language="C#" debug="true" %>
<html>
<script runat = "server">
void Page_Load(Object Sender, EventArgs e)
{
Response.Write("ASPX-Example!<br>");
}
</script>
<body>
<form runat="server">
<asp:label id="nlLabel" text="Company" runat="server" />
<asp:Textbox id="txtBox" runat="server" />
</form>
</body>
</html>
If i call the site directly i.e. without proxy (http://myLocalHost/myApp) it
works fine. If i call it through proxy of company
(http://www.myCompany.com/myApp), the browser returns "HTTP 404 - File not
found".
What is here wrong.
Thanks
Habib