|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Open and read/write ASPX fileTrying to open and read/write another aspx file from my aspx page. Basically I want to be able to update my aspx files from the website. Here's my code so far: Dim path As String = Server.MapPath("tester.aspx") Dim din As New StreamReader(IO.File.OpenRead(path)) Dim conts As String = din.ReadToEnd txtEdit.Text = conts But it doesn't work. If I use a text file, it works great, but not an ASPX file. I'm assuming they're protected? How do I get them open? Thanks!! -- David Lozzi Web Applications Developer dlozzi@(remove-this)delphi-ts.com Don't laugh too hard, but it works fine. My first attempt at this script I
accidently selected OpenWrite which cleared the file. Then when reading a blank file, I got nothing back. I recreated the file with content and it works great now. Thanks!! -- Show quoteHide quoteDavid Lozzi Web Applications Developer dlozzi@(remove-this)delphi-ts.com "David Lozzi" <DavidLozzi@nospam.nospam> wrote in message news:uCsz0fh8FHA.2364@TK2MSFTNGP12.phx.gbl... > Howdy, > > Trying to open and read/write another aspx file from my aspx page. > Basically I want to be able to update my aspx files from the website. > Here's my code so far: > > Dim path As String = Server.MapPath("tester.aspx") > Dim din As New StreamReader(IO.File.OpenRead(path)) > Dim conts As String = din.ReadToEnd > > txtEdit.Text = conts > > But it doesn't work. If I use a text file, it works great, but not an ASPX > file. I'm assuming they're protected? How do I get them open? > > Thanks!! > > -- > David Lozzi > Web Applications Developer > dlozzi@(remove-this)delphi-ts.com > > > > Thanks for telling us what works! <grin>
Show quoteHide quote "David Lozzi" <DavidLozzi@nospam.nospam> wrote in message news:OIb9bph8FHA.3760@TK2MSFTNGP14.phx.gbl... > Don't laugh too hard, but it works fine. My first attempt at this script I > accidently selected OpenWrite which cleared the file. Then when reading a > blank file, I got nothing back. > > I recreated the file with content and it works great now. > > Thanks!! > > -- > David Lozzi > Web Applications Developer > dlozzi@(remove-this)delphi-ts.com > > > > "David Lozzi" <DavidLozzi@nospam.nospam> wrote in message > news:uCsz0fh8FHA.2364@TK2MSFTNGP12.phx.gbl... >> Howdy, >> >> Trying to open and read/write another aspx file from my aspx page. >> Basically I want to be able to update my aspx files from the website. >> Here's my code so far: >> >> Dim path As String = Server.MapPath("tester.aspx") >> Dim din As New StreamReader(IO.File.OpenRead(path)) >> Dim conts As String = din.ReadToEnd >> >> txtEdit.Text = conts >> >> But it doesn't work. If I use a text file, it works great, but not an >> ASPX file. I'm assuming they're protected? How do I get them open? >> >> Thanks!! >> >> -- >> David Lozzi >> Web Applications Developer >> dlozzi@(remove-this)delphi-ts.com >> >> >> >> > >
Other interesting topics
ASP.NET 2.0 Frustration - MS Please Help
TreeView problem ASP.NET does not honor Title nor Javscript options Odd behavior in 2005 with base page classes how to parse deeper nested tags in custom control Accessing session from thread Forms authentication with images on the login page Problem migrating Web Project from ASP.Net 1.1 to 2.0 Conditional directive multi-column dropdownlist |
|||||||||||||||||||||||