Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~231 People Reached
Favorite Forums
Favorite Tags
xml x 1
Member Avatar for mahendra dubey

Hi there I am using XSLT to process an XML file.I want to copy all whole XML and want to modify some attribute node.I using follwing code [code] <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl" xmlns:db="http://tempuri.org/DatabaseXMLSchema.xsd"> <xsl:output method="xml" indent="yes"/> <xsl:template match="@* | node()"> <xsl:copy> <xsl:apply-templates select="@* | node()"/> </xsl:copy> …

0
57
Member Avatar for mahendra dubey

Hi There My application depends upon windows details.My application support all the windows that support .net 3.5 sp1.I want to get the list of windows(with there edition,platforms(64 bit or 32 bit),and service pack) that support .NET 3.5 sp1. I hv googled for this but did not find any link that …

Member Avatar for privatevoid
0
38
Member Avatar for mahendra dubey

Hi There I am new to c#. I am using SqlDataReader to read database records(using c#).I have found lots of way to do it,but for performance i have found that ordinal reading is fast. Now I want to read a guid field ,as we know that with ordinal reading we …

Member Avatar for sknake
0
91
Member Avatar for mahendra dubey

Hi All I am new to WPF.I have created a new WPF project(.NET 3.5 SP1),then added a new Window to this project.In this window there is a Frame control.I set the frame's source property to a HTML page,in the constructor of Window.There are many links in Html page. Now problem …

0
45