W
Wootaek Choi
Dear Sir,
I create webform page that
all html code is generated in code behind and sended to IE using
Response.Write() like this,
namespace localhost.XML
{
public class Encoding : System.Web.UI.Page
{
private void Page_Load(object sender, System.EventArgs e)
{
Response.Write("Request Search and Rescue!!");
}
}
}
Aspx file contains nothing but these strings.
<%@ Page language="c#" Codebehind="Encoding.aspx.cs"
AutoEventWireup="false" Inherits="localhost.XML.Encoding"%>
It worked well.. When client checked source code from IE,
only "Request Search and Rescue!!" is showed up to the client and
That's What I want.
but now, It isn't work suddenly.
Only these code is always remained.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html;
charset=euc-kr"></HEAD>
<BODY></BODY></HTML>
Why Response.Write() does not work?
I create webform page that
all html code is generated in code behind and sended to IE using
Response.Write() like this,
namespace localhost.XML
{
public class Encoding : System.Web.UI.Page
{
private void Page_Load(object sender, System.EventArgs e)
{
Response.Write("Request Search and Rescue!!");
}
}
}
Aspx file contains nothing but these strings.
<%@ Page language="c#" Codebehind="Encoding.aspx.cs"
AutoEventWireup="false" Inherits="localhost.XML.Encoding"%>
It worked well.. When client checked source code from IE,
only "Request Search and Rescue!!" is showed up to the client and
That's What I want.
but now, It isn't work suddenly.
Only these code is always remained.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html;
charset=euc-kr"></HEAD>
<BODY></BODY></HTML>
Why Response.Write() does not work?