0

生のhtmlページをブラウザに書きたいです。私は何かがこれを行うと思っていましたが、これは現在のページに書き込みます:

Dim html as New StringBuilder
html.append("<html><body>A new html page</body></html>"
Response.Clear()
Response.Output.Write(html.ToString)

私はこれができることを知っていますが、方法を思い出せません

4

1 に答える 1

1

コンテキスト オブジェクトを取得する必要があり、次のようなものを使用できます。

context.Response.Clear();

//Response.Charset = "UTF-8";
context.Response.ContentType = "text/html"

context.Response.AddHeader("Content-Length", length);

context.Response.OutputStream.Write((byte[])buffer, 0, filesize);
于 2013-02-15T16:34:27.677 に答える