placing response.writefile in web page

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Gert Albertse

    placing response.writefile in web page

    I'm reading a html file with response.writef ile into a aspx web page. If I
    want to add a separate header or footer or anything else to the aspx web
    page, the response.writef ile is the first part. My question is, how to place
    it in somewhere on the web page specific e.g.. table.


  • Grant Merwitz

    #2
    Re: placing response.writef ile in web page

    You can create a label/literal, and set that text to be the file.

    e.g.

    Instead of Response.Write
    Write the html file into a string
    then set you label/literal text to = that string

    HTH

    "Gert Albertse" <gjja@sun.ac.za > wrote in message
    news:ONwjXenoFH A.2444@tk2msftn gp13.phx.gbl...[color=blue]
    > I'm reading a html file with response.writef ile into a aspx web page. If I
    > want to add a separate header or footer or anything else to the aspx web
    > page, the response.writef ile is the first part. My question is, how to
    > place it in somewhere on the web page specific e.g.. table.
    >
    >[/color]


    Comment

    Working...