Click here to Skip to main content
15,900,906 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: syntax error '<' Pin
gr8coaster32931-Oct-05 9:28
gr8coaster32931-Oct-05 9:28 
GeneralRe: syntax error '<' Pin
Christian Graus31-Oct-05 10:54
protectorChristian Graus31-Oct-05 10:54 
Questionshould i use flash or director with my xml? Pin
lezlea29-Oct-05 21:03
lezlea29-Oct-05 21:03 
AnswerRe: should i use flash or director with my xml? Pin
Sushant_Mathur14-Nov-05 20:10
Sushant_Mathur14-Nov-05 20:10 
QuestionXSLT stylesheet Pin
HpLif28-Oct-05 8:25
HpLif28-Oct-05 8:25 
Questionproblem in updation Pin
Nadia stoichov26-Oct-05 17:45
sussNadia stoichov26-Oct-05 17:45 
AnswerRe: problem in updation Pin
Denevers14-Nov-05 13:39
Denevers14-Nov-05 13:39 
AnswerRe: problem in updation Pin
Sushant_Mathur14-Nov-05 19:54
Sushant_Mathur14-Nov-05 19:54 
Let this is your XML file
<name>
<firstname>Sushant</firstname>
<surname>Mathur</surname>
</name>
so to update these values asp page would be like this:

<%@ Language=VBScript %>
<%
function genDOM(fname,lname)
dim xmldoc
dim ElemFname
dim ElemLname
set xmlDoc=CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("c:\Document1.xml")
If (xmldoc.parseError.errorCode = 0) Then
Set ElemFname = oMSXml.selectSingleNode("//firstname")
Set ElemLname= oMSXml.selectSingleNode("//surname")
fname =Request(user_name)
lname=Request(user_surname)
ElemFname.Text =fname
ElemLname.text=lname
else
msgbox(xmldoc.parseError.reason)
end if
end function
%>
</HEAD>
<BODY>
<FORM>
<P>
<INPUT id=text1 name="user_name"><BR>
<INPUT name="user_surname"><BR>
<INPUT type=button value=" click " onclick="<%=genDOM()%>" id=button1 name=button1>
</P>
</FORM>
</BODY>
</HTML>


Sushant Mathur
Ocwen Financial Sol. Pvt. Ltd,
Bangalore,
INDIA.
QuestionSOAP via stdin/stdout - how? Pin
Carsten Leue25-Oct-05 8:33
Carsten Leue25-Oct-05 8:33 
Questionhow can i insert image in .chm file with the help of xml comments?? Pin
parvinder sehrawat23-Oct-05 21:23
parvinder sehrawat23-Oct-05 21:23 
Questionexporting image field from sql server... Pin
l a u r e n21-Oct-05 14:54
l a u r e n21-Oct-05 14:54 
AnswerRe: exporting image field from sql server... Pin
Sushant_Mathur25-Oct-05 0:37
Sushant_Mathur25-Oct-05 0:37 
Questionweb services and oracle Pin
BECK720-Oct-05 11:47
BECK720-Oct-05 11:47 
QuestionFiltering xml data into a web page Pin
Karel Paborsky17-Oct-05 22:36
Karel Paborsky17-Oct-05 22:36 
QuestionSerialize without escaping Pin
mgaerber15-Oct-05 1:31
mgaerber15-Oct-05 1:31 
AnswerRe: Serialize without escaping Pin
Sushant_Mathur25-Oct-05 0:29
Sushant_Mathur25-Oct-05 0:29 
GeneralRe: Serialize without escaping Pin
mgaerber28-Oct-05 2:37
mgaerber28-Oct-05 2:37 
QuestionXML Deserialization of Known Derived Classes Pin
Alexandre G13-Oct-05 21:19
Alexandre G13-Oct-05 21:19 
QuestionAdd new tag after every 5 elements Pin
Sushant_Mathur13-Oct-05 20:48
Sushant_Mathur13-Oct-05 20:48 
AnswerRe: Add new tag after every 5 elements Pin
niansah14-Oct-05 12:32
niansah14-Oct-05 12:32 
GeneralRe: Add new tag after every 5 elements Pin
Sushant_Mathur16-Oct-05 19:00
Sushant_Mathur16-Oct-05 19:00 
QuestionConvert OpenOffice XML to XHTML Pin
kylegreen13-Oct-05 9:02
kylegreen13-Oct-05 9:02 
QuestionWse X509 Certificate unaccessable through web client Pin
eni9ma12-Oct-05 14:17
eni9ma12-Oct-05 14:17 
AnswerRe: Wse X509 Certificate unaccessable through web client Pin
IsraelSep4-Aug-11 12:26
IsraelSep4-Aug-11 12:26 
QuestionXML serialized Parent/child output format?? Pin
PhrankBooth12-Oct-05 5:38
PhrankBooth12-Oct-05 5:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.