Good Afternoon:
I'm trying to save my updated XML file on the client side to the XML file located on a virtual directory on my IIS server. I can update and add elements and new information on my HTML page with test.xml loaded.
I see that most information for saving new XML information is related to the client side. Not sure of the process to update the new information on my IIS server. The text below is what I tried with no luck.
<%@ Language=VBScript %>
<%
dim fso
const ForWriting = 2
set fso = Server.CreateObject("scripting.filesystemobject"
set file = fs
penTextFile(server.MapPath("test.xml"
,ForWriting,true)
file.write request.Form("text2"
response.Write Request.Form("text2"
response.Redirect "test.htm"
%>
Thank you in advance for your help!
Smuckers
I'm trying to save my updated XML file on the client side to the XML file located on a virtual directory on my IIS server. I can update and add elements and new information on my HTML page with test.xml loaded.
I see that most information for saving new XML information is related to the client side. Not sure of the process to update the new information on my IIS server. The text below is what I tried with no luck.
<%@ Language=VBScript %>
<%
dim fso
const ForWriting = 2
set fso = Server.CreateObject("scripting.filesystemobject"
set file = fs
file.write request.Form("text2"
response.Write Request.Form("text2"
response.Redirect "test.htm"
%>
Thank you in advance for your help!
Smuckers