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
~364 People Reached

3 Posted Topics

Member Avatar for divakar kumar

I am unable make a servlet by JSP what i have to do for. Why occur this type of problem

Member Avatar for peter_budo
0
59
Member Avatar for priyapratheep

Hey you want to sort just based on amt right first u use 2 times table aliasing check comdition use order-by clause u can able to make proper quey

Member Avatar for dickersonka
0
81
Member Avatar for Manoj1984

<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <body> <h2>XXXXXXXXX</h2> <xsl:apply-templates/> </body> </html> </xsl:template> <xsl:template match="contact"> <p> Company Nmae: <xsl:apply-templates select="@cmpnyNm"/><br/> Contact No.: <xsl:apply-templates select="@ContactNm"/> </p> </xsl:template> <xsl:template match="Phone"> <p> <xsl:apply-templates select="@Type"/> No.: <xsl:apply-templates select="@Number"/> </p> </xsl:template> </xsl:stylesheet>

Member Avatar for divakar kumar
0
224

The End.