473,406 Members | 2,293 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Migrating an Xml control using XslTransform

WT
Hello,

I have code created with .net 1.0 and migrated to 3.5.
Form 2.0 the XslTransform class is obsolete and the vs2008 compiler
generates warnings that these classes are absolete suggesting to use
XslCompiledTransform.
But all this was rendered using an Xml control and I can't find a way to
relate this control to an XslCompiledTransform ?

Any help appreciated to solve this migration pb.

CS

Jun 27 '08 #1
9 2478
"WT" <WT@newsgroups.nospamwrote in message
news:A6**********************************@microsof t.com...
I have code created with .net 1.0 and migrated to 3.5.
Form 2.0 the XslTransform class is obsolete and the vs2008 compiler
generates warnings that these classes are absolete suggesting to use
XslCompiledTransform.
But all this was rendered using an Xml control and I can't find a way to
relate this control to an XslCompiledTransform ?
Could you post the code causing the error? Do you have references to
XslTransform objects in the code behind files? You should be able to just
replace them using code like:

Dim xdoc As New XmlDocument
xdoc.LoadXml(strYourXml)
Dim xsdoc As New XslCompiledTransform()
xsdoc.Load(xsltFilePath)
Dim sw As New StringWriter
xsdoc.Transform(xdoc.CreateNavigator(), Nothing, sw)
strTransformed = sw.ToString

Jun 27 '08 #2
WT
Thanks for answer, but the problem is not here it is in the usage of the Xml
control to display the page, my code is like this:
xt = new XslTransform();
xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,xr);

// create the ArgList
XsltArgumentList xa = new XsltArgumentList();
XslHelper xh = new XslHelper();
xa.AddExtensionObject("urn:MyExt",xh);
AddParam(xa,"LanguageRequested",string.Empty,lang. Name);
AddParam(xa,"LanguageReturned",string.Empty,langua geReturned);
AddParam(xa,"AsRequested",string.Empty,asRequested .ToString());
AddParam(xa,"Location",string.Empty,loc);
AddParam(xa,"Title",string.Empty,Title);
AddParam(xa,"Viewer",string.Empty,Request.Url.Abso lutePath);
AddParam(xa,"myRoot",string.Empty,loc.Substring(0, loc.IndexOf("/")));

// load up the Xml control
myXml.DocumentSource = filePath;
myXml.Transform = xt;
myXml.TransformArgumentList = xa;
Problem is in the last 3 lines, MS doc for Xml control speaks about some
possibility to use XslCompiledTransform for this control in place of
XslTransform but how, I spent time reading all the members and found no one
able to receive an XslCompiledTransform ?

CS


"Leon Mayne" <le**@rmvme.mvps.orga écrit dans le message de
news:98**********************************@microsof t.com...
"WT" <WT@newsgroups.nospamwrote in message
news:A6**********************************@microsof t.com...
>I have code created with .net 1.0 and migrated to 3.5.
Form 2.0 the XslTransform class is obsolete and the vs2008 compiler
generates warnings that these classes are absolete suggesting to use
XslCompiledTransform.
But all this was rendered using an Xml control and I can't find a way to
relate this control to an XslCompiledTransform ?

Could you post the code causing the error? Do you have references to
XslTransform objects in the code behind files? You should be able to just
replace them using code like:

Dim xdoc As New XmlDocument
xdoc.LoadXml(strYourXml)
Dim xsdoc As New XslCompiledTransform()
xsdoc.Load(xsltFilePath)
Dim sw As New StringWriter
xsdoc.Transform(xdoc.CreateNavigator(), Nothing, sw)
strTransformed = sw.ToString
Jun 27 '08 #3
"WT" <WT@newsgroups.nospamwrote in message
news:87**********************************@microsof t.com...
Thanks for answer, but the problem is not here it is in the usage of the
Xml control to display the page, my code is like this:
xt = new XslTransform();
xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,xr);

// create the ArgList
XsltArgumentList xa = new XsltArgumentList();
XslHelper xh = new XslHelper();
xa.AddExtensionObject("urn:MyExt",xh);
AddParam(xa,"LanguageRequested",string.Empty,lang. Name);
AddParam(xa,"LanguageReturned",string.Empty,langua geReturned);
AddParam(xa,"AsRequested",string.Empty,asRequested .ToString());
AddParam(xa,"Location",string.Empty,loc);
AddParam(xa,"Title",string.Empty,Title);
AddParam(xa,"Viewer",string.Empty,Request.Url.Abso lutePath);
AddParam(xa,"myRoot",string.Empty,loc.Substring(0, loc.IndexOf("/")));

// load up the Xml control
myXml.DocumentSource = filePath;
myXml.Transform = xt;
myXml.TransformArgumentList = xa;
Problem is in the last 3 lines, MS doc for Xml control speaks about some
possibility to use XslCompiledTransform for this control in place of
XslTransform but how, I spent time reading all the members and found no
one able to receive an XslCompiledTransform ?
OK, so whatever myXml is has a property called Transform which accepts an
object of type XslTransform? Do you have the source code for whatever myXml
is an instance of? If so then you can change its Transform property to
accept an XslCompiledTransform and then change all the references to it to
create a compiled transform instead and pass that in.

At the end of the day, it might not be worth the effort. You would probably
spend a lot of time refactoring your code to fix something that isn't
broken. XslTransform may be deprecated, but it hasn't been removed and it
still works. If you are likely to rewrite all the controls before the next
major release of VS & the .NET framework then you might as well wait until
then.

Jun 27 '08 #4
WT
The control is the asp.net standard Xml control.
I have tried something base on your code and using the DoucmentContent
property:

XmlDocument xdoc = new XmlDocument();
xdoc.Load(filePath);
xt = new XslCompiledTransform();
xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,null,xr);
StringWriter sw = new StringWriter();
xt.Transform(xdoc.CreateNavigator(),xa,sw);
myXml.DocumentContent = sw.ToString();

need to check now.
Anyway thanks.

CS
"Leon Mayne" <le**@rmvme.mvps.orga écrit dans le message de
news:02**********************************@microsof t.com...
"WT" <WT@newsgroups.nospamwrote in message
news:87**********************************@microsof t.com...
>Thanks for answer, but the problem is not here it is in the usage of the
Xml control to display the page, my code is like this:
xt = new XslTransform();
xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,xr);

// create the ArgList
XsltArgumentList xa = new XsltArgumentList();
XslHelper xh = new XslHelper();
xa.AddExtensionObject("urn:MyExt",xh);
AddParam(xa,"LanguageRequested",string.Empty,lang. Name);
AddParam(xa,"LanguageReturned",string.Empty,langua geReturned);
AddParam(xa,"AsRequested",string.Empty,asRequested .ToString());
AddParam(xa,"Location",string.Empty,loc);
AddParam(xa,"Title",string.Empty,Title);
AddParam(xa,"Viewer",string.Empty,Request.Url.Abso lutePath);
AddParam(xa,"myRoot",string.Empty,loc.Substring(0, loc.IndexOf("/")));

// load up the Xml control
myXml.DocumentSource = filePath;
myXml.Transform = xt;
myXml.TransformArgumentList = xa;
Problem is in the last 3 lines, MS doc for Xml control speaks about some
possibility to use XslCompiledTransform for this control in place of
XslTransform but how, I spent time reading all the members and found no
one able to receive an XslCompiledTransform ?

OK, so whatever myXml is has a property called Transform which accepts an
object of type XslTransform? Do you have the source code for whatever
myXml is an instance of? If so then you can change its Transform property
to accept an XslCompiledTransform and then change all the references to it
to create a compiled transform instead and pass that in.

At the end of the day, it might not be worth the effort. You would
probably spend a lot of time refactoring your code to fix something that
isn't broken. XslTransform may be deprecated, but it hasn't been removed
and it still works. If you are likely to rewrite all the controls before
the next major release of VS & the .NET framework then you might as well
wait until then.
Jun 27 '08 #5
Hi CS,

As for the XML control, it does be an existing issue that the 2.0 control
of ASP.NET XML doesn't correctly exposed the "Transform" property as
"XslCompiledTransform" class. This make it raise "obsolete" error when you
try perform transforming on some complex xslt template(such as the ones
that will require additional custom arguements) since such xslt will need
dynamic compilation of the XSLT transform which will raise error.

So far, I think the following code you posted (which programmtically use
XslCompiledTransform class to do the XSL transforming) is reasonable:

============
XmlDocument xdoc = new XmlDocument();
xdoc.Load(filePath);
xt = new XslCompiledTransform();
xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,null,xr);
StringWriter sw = new StringWriter();
xt.Transform(xdoc.CreateNavigator(),xa,sw);
myXml.DocumentContent = sw.ToString();
================

Also, on the page, you can put a ASP.NET Literal control instead of Xml
control and assign the transfored result content to the Literal control's
Text propety.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>From: "WT" <WT@newsgroups.nospam>
References: <A6**********************************@microsoft.co m>
<98**********************************@microsoft.co m>
<87**********************************@microsoft.co m>
<02**********************************@microsoft.co m>
>In-Reply-To: <02**********************************@microsoft.co m>
Subject: Re: Migrating an Xml control using XslTransform
Date: Fri, 16 May 2008 17:00:07 +0200

The control is the asp.net standard Xml control.
I have tried something base on your code and using the DoucmentContent
property:

XmlDocument xdoc = new XmlDocument();
xdoc.Load(filePath);
xt = new
XslCompiledTransform();
xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,null,xr);
StringWriter sw = new StringWriter();
xt.Transform(xdoc.CreateNavigator(),xa,sw);
myXml.DocumentContent = sw.ToString();

need to check now.
Anyway thanks.

CS
"Leon Mayne" <le**@rmvme.mvps.orga écrit dans le message de
news:02**********************************@microso ft.com...
>"WT" <WT@newsgroups.nospamwrote in message
news:87**********************************@microso ft.com...
>>Thanks for answer, but the problem is not here it is in the usage of
the
>>Xml control to display the page, my code is like this:
xt = new XslTransform();
xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,xr);

// create the ArgList
XsltArgumentList xa = new XsltArgumentList();
XslHelper xh = new XslHelper();
xa.AddExtensionObject("urn:MyExt",xh);
AddParam(xa,"LanguageRequested",string.Empty,lang. Name);
AddParam(xa,"LanguageReturned",string.Empty,langua geReturned);
AddParam(xa,"AsRequested",string.Empty,asRequested .ToString());
AddParam(xa,"Location",string.Empty,loc);
AddParam(xa,"Title",string.Empty,Title);
AddParam(xa,"Viewer",string.Empty,Request.Url.Abso lutePath);
AddParam(xa,"myRoot",string.Empty,loc.Substring(0, loc.IndexOf("/")));

// load up the Xml control
myXml.DocumentSource = filePath;
myXml.Transform = xt;
myXml.TransformArgumentList = xa;
Problem is in the last 3 lines, MS doc for Xml control speaks about
some
>>possibility to use XslCompiledTransform for this control in place of
XslTransform but how, I spent time reading all the members and found no
one able to receive an XslCompiledTransform ?

OK, so whatever myXml is has a property called Transform which accepts
an
>object of type XslTransform? Do you have the source code for whatever
myXml is an instance of? If so then you can change its Transform
property
>to accept an XslCompiledTransform and then change all the references to
it
>to create a compiled transform instead and pass that in.

At the end of the day, it might not be worth the effort. You would
probably spend a lot of time refactoring your code to fix something that
isn't broken. XslTransform may be deprecated, but it hasn't been removed
and it still works. If you are likely to rewrite all the controls before
the next major release of VS & the .NET framework then you might as well
wait until then.

Jun 27 '08 #6
WT
Thanks Steven.
CS
"Steven Cheng [MSFT]" <st*****@online.microsoft.coma écrit dans le message
de news:r4**************@TK2MSFTNGHUB02.phx.gbl...
Hi CS,

As for the XML control, it does be an existing issue that the 2.0 control
of ASP.NET XML doesn't correctly exposed the "Transform" property as
"XslCompiledTransform" class. This make it raise "obsolete" error when you
try perform transforming on some complex xslt template(such as the ones
that will require additional custom arguements) since such xslt will need
dynamic compilation of the XSLT transform which will raise error.

So far, I think the following code you posted (which programmtically use
XslCompiledTransform class to do the XSL transforming) is reasonable:

============
XmlDocument xdoc = new XmlDocument();
xdoc.Load(filePath);
xt = new
XslCompiledTransform();
xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,null,xr);
StringWriter sw = new StringWriter();
xt.Transform(xdoc.CreateNavigator(),xa,sw);
myXml.DocumentContent = sw.ToString();
================

Also, on the page, you can put a ASP.NET Literal control instead of Xml
control and assign the transfored result content to the Literal control's
Text propety.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.

--------------------
>>From: "WT" <WT@newsgroups.nospam>
References: <A6**********************************@microsoft.co m>
<98**********************************@microsoft.co m>
<87**********************************@microsoft.co m>
<02**********************************@microsoft.co m>
>>In-Reply-To: <02**********************************@microsoft.co m>
Subject: Re: Migrating an Xml control using XslTransform
Date: Fri, 16 May 2008 17:00:07 +0200

The control is the asp.net standard Xml control.
I have tried something base on your code and using the DoucmentContent
property:

XmlDocument xdoc = new XmlDocument();
xdoc.Load(filePath);
xt = new
XslCompiledTransform();
> xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,null,xr);
StringWriter sw = new StringWriter();
xt.Transform(xdoc.CreateNavigator(),xa,sw);
myXml.DocumentContent = sw.ToString();

need to check now.
Anyway thanks.

CS
"Leon Mayne" <le**@rmvme.mvps.orga écrit dans le message de
news:02**********************************@micros oft.com...
>>"WT" <WT@newsgroups.nospamwrote in message
news:87**********************************@micros oft.com...
Thanks for answer, but the problem is not here it is in the usage of
the
>>>Xml control to display the page, my code is like this:
xt = new XslTransform();
xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,xr);

// create the ArgList
XsltArgumentList xa = new XsltArgumentList();
XslHelper xh = new XslHelper();
xa.AddExtensionObject("urn:MyExt",xh);
AddParam(xa,"LanguageRequested",string.Empty,lang. Name);
AddParam(xa,"LanguageReturned",string.Empty,langua geReturned);
AddParam(xa,"AsRequested",string.Empty,asRequested .ToString());
AddParam(xa,"Location",string.Empty,loc);
AddParam(xa,"Title",string.Empty,Title);
AddParam(xa,"Viewer",string.Empty,Request.Url.Abso lutePath);

AddParam(xa,"myRoot",string.Empty,loc.Substring (0,loc.IndexOf("/")));

// load up the Xml control
myXml.DocumentSource = filePath;
myXml.Transform = xt;
myXml.TransformArgumentList = xa;
Problem is in the last 3 lines, MS doc for Xml control speaks about
some
>>>possibility to use XslCompiledTransform for this control in place of
XslTransform but how, I spent time reading all the members and found no
one able to receive an XslCompiledTransform ?

OK, so whatever myXml is has a property called Transform which accepts
an
>>object of type XslTransform? Do you have the source code for whatever
myXml is an instance of? If so then you can change its Transform
property
>>to accept an XslCompiledTransform and then change all the references to
it
>>to create a compiled transform instead and pass that in.

At the end of the day, it might not be worth the effort. You would
probably spend a lot of time refactoring your code to fix something that
isn't broken. XslTransform may be deprecated, but it hasn't been removed
and it still works. If you are likely to rewrite all the controls before
the next major release of VS & the .NET framework then you might as well
wait until then.

Jun 27 '08 #7
You're welcome CS.

Also, I agree that this is an serious problem that cause the ASP.NET xml
control not quite useful in new version environment. I would also suggest
you submit your comments and feedback on this so that the product team can
also hear more on this:

http://connect.microsoft.com/feedbac...spx?SiteID=210

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>In-Reply-To: <r4**************@TK2MSFTNGHUB02.phx.gbl>
Subject: Re: Migrating an Xml control using XslTransform
Date: Mon, 19 May 2008 14:47:03 +0200
>
Thanks Steven.
CS
"Steven Cheng [MSFT]" <st*****@online.microsoft.coma écrit dans le
message
>de news:r4**************@TK2MSFTNGHUB02.phx.gbl...
>Hi CS,

As for the XML control, it does be an existing issue that the 2.0 control
of ASP.NET XML doesn't correctly exposed the "Transform" property as
"XslCompiledTransform" class. This make it raise "obsolete" error when
you
>try perform transforming on some complex xslt template(such as the ones
that will require additional custom arguements) since such xslt will need
dynamic compilation of the XSLT transform which will raise error.

So far, I think the following code you posted (which programmtically use
XslCompiledTransform class to do the XSL transforming) is reasonable:

============
XmlDocument xdoc = new XmlDocument();
xdoc.Load(filePath);
xt = new
XslCompiledTransform();
xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,null,xr);
StringWriter sw = new StringWriter();
xt.Transform(xdoc.CreateNavigator(),xa,sw);
myXml.DocumentContent = sw.ToString();
================

Also, on the page, you can put a ASP.NET Literal control instead of Xml
control and assign the transfored result content to the Literal control's
Text propety.

Sincerely,

Steven Cheng

M
Jun 27 '08 #8
WT
Done.
"Steven Cheng [MSFT]" <st*****@online.microsoft.coma écrit dans le message
de news:fh**************@TK2MSFTNGHUB02.phx.gbl...
You're welcome CS.

Also, I agree that this is an serious problem that cause the ASP.NET xml
control not quite useful in new version environment. I would also suggest
you submit your comments and feedback on this so that the product team
can
also hear more on this:

http://connect.microsoft.com/feedbac...spx?SiteID=210

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
>>In-Reply-To: <r4**************@TK2MSFTNGHUB02.phx.gbl>
Subject: Re: Migrating an Xml control using XslTransform
Date: Mon, 19 May 2008 14:47:03 +0200
>>
Thanks Steven.
CS
"Steven Cheng [MSFT]" <st*****@online.microsoft.coma écrit dans le
message
>>de news:r4**************@TK2MSFTNGHUB02.phx.gbl...
>>Hi CS,

As for the XML control, it does be an existing issue that the 2.0
control
of ASP.NET XML doesn't correctly exposed the "Transform" property as
"XslCompiledTransform" class. This make it raise "obsolete" error when
you
>>try perform transforming on some complex xslt template(such as the ones
that will require additional custom arguements) since such xslt will
need
dynamic compilation of the XSLT transform which will raise error.

So far, I think the following code you posted (which programmtically use
XslCompiledTransform class to do the XSL transforming) is reasonable:

============
XmlDocument xdoc = new XmlDocument();
xdoc.Load(filePath);
xt = new
XslCompiledTransform();
xslt = Server.MapPath(xslt);
XmlUrlResolver xr = new XmlUrlResolver();
xt.Load(xslt,null,xr);
StringWriter sw = new StringWriter();
xt.Transform(xdoc.CreateNavigator(),xa,sw);
myXml.DocumentContent = sw.ToString();
================

Also, on the page, you can put a ASP.NET Literal control instead of Xml
control and assign the transfored result content to the Literal
control's
Text propety.

Sincerely,

Steven Cheng

M
Jun 27 '08 #9
Thank you!
--------------------
>From: "WT" <WT@newsgroups.nospam>
Subject: Re: Migrating an Xml control using XslTransform
Date: Tue, 20 May 2008 12:43:40 +0200
>
Done.
"Steven Cheng [MSFT]" <st*****@online.microsoft.coma écrit dans le
message
>de news:fh**************@TK2MSFTNGHUB02.phx.gbl...
>You're welcome CS.

Also, I agree that this is an serious problem that cause the ASP.NET xml
control not quite useful in new version environment. I would also suggest
you submit your comments and feedback on this so that the product team
can
also hear more on this:

http://connect.microsoft.com/feedbac...spx?SiteID=210

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you.
Please
>feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

================================================= =
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
>ications.

=
Jun 27 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: canasdaq | last post by:
Can anyone please help me. I was looking at the article "http://www.eggheadcafe.com/articles/20030603.asp". I am new to .net and know nothing in c#. I want to write a menu in asp.net. Can anyone...
19
by: Mark Miller | last post by:
QUESTION: Does anyone know how I can use v2.6 of the MSXML parser with .NET? BACKGROUND: I "Web to Print" process that allows our clients (newspapers) to export their data and pass it thru a...
1
by: manlio | last post by:
how can I load a XSL string (not an xsl file!!) with XslTransform ??? If I use the code: // Create a new XslTransform class and load the stylesheet XslTransform myXslTransform = new...
2
by: Stan | last post by:
I could not find the answers for these two questions about in Xml server control 1. Is it possible for control to keep its ViewState? Even if I set EnableViewState = true the control does not seem...
2
by: Dave | last post by:
Hi I have a Xml Web Server control on my page <asp:Xml id=Xml1 runat="server" EnableViewState="True"></asp:Xml> I'm doing a transform as follows System.Xml.XmlDocument doc = new...
0
by: Justin Crossley | last post by:
I have a webform that lists search results using an XML control The search results are contained in a string called strResults and are transformed using an xsl file into formatted results. The...
5
by: mytestemailaccount | last post by:
Hi, Hope you can help. I am relatively new to all this but would appreciate the groups help. The scenario: I am c# and asp.net to create a web application. The web page contains a user...
1
by: Josh Wolf | last post by:
I feel like this question has been half-answered on here for me a few times, but I'm looking for a more complete solution. I've got the results of a query being returned in XML and processed...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.