I hope I am in the correct forum for this. We have code from another company that we need to modify. We are not very good at XML so any help would be appreciated.
The page start out with this:
Response.Write("<?xml version=""1.0""?>" & vbCrLf)
Response.Write("<?xml:stylesheet type=""text/xsl"" href=""XSL/TaskViewXSL.asp""?>" & vbCrLf)
this is why I post it to this forum. Later the values are loaded like this:
Response.Write(sTabString & "<task taskid=" & Chr(34) & rsOutput("TaskID"
.Value & Chr(34))
Response.Write(" tasktype=" & Chr(34) & rsOutput("TaskType"
.Value & Chr(34))
Response.Write(" routetype=" & Chr(34) & rsOutput("TaskRouteType"
.Value & Chr(34))
Response.Write(" parent=" & Chr(34) & rsOutput("TaskParent"
.Value & Chr(34))
Response.Write(" subject=" & Chr(34) & Server.HtmlEncode(rsOutput("TaskSubject"
.Value) & Chr(34))
.............
All we are trying to do is bold the output task name under a certain condition. Does anyone understand and know how to do this? Or any good descriptions on what this is doing exactly would help too.
The page start out with this:
Response.Write("<?xml version=""1.0""?>" & vbCrLf)
Response.Write("<?xml:stylesheet type=""text/xsl"" href=""XSL/TaskViewXSL.asp""?>" & vbCrLf)
this is why I post it to this forum. Later the values are loaded like this:
Response.Write(sTabString & "<task taskid=" & Chr(34) & rsOutput("TaskID"
Response.Write(" tasktype=" & Chr(34) & rsOutput("TaskType"
Response.Write(" routetype=" & Chr(34) & rsOutput("TaskRouteType"
Response.Write(" parent=" & Chr(34) & rsOutput("TaskParent"
Response.Write(" subject=" & Chr(34) & Server.HtmlEncode(rsOutput("TaskSubject"
.............
All we are trying to do is bold the output task name under a certain condition. Does anyone understand and know how to do this? Or any good descriptions on what this is doing exactly would help too.