Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Sushant_Mathur

@Sushant_Mathur
About
Posts
72
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • regular expressions
    S Sushant_Mathur

    you can download regular expression related books from the below link: http://www.flazx.com/category45.php[^]

    Sushant Mathur Bangalore, INDIA.

    ASP.NET regex

  • Problem in cache
    S Sushant_Mathur

    Check this Post: http://www.kbanswers.com/viewtopic.php?t=32303[^]

    Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    ASP.NET help

  • DATA GRID
    S Sushant_Mathur

    check this link: http://forums.asp.net/p/617821/619868.aspx[^]

    Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    ASP.NET csharp css asp-net question

  • DATA GRID
    S Sushant_Mathur

    You can use DataGridItemCollection and then display particular values in the text box. for ex. Dim instance As DataGrid Dim value As DataGridItemCollection value = instance.Items

    Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    ASP.NET csharp css asp-net question

  • How to insert Comma between templates
    S Sushant_Mathur

    Thanks a lot Geroge...i was looking for the same kind of solution.. thanks again

    Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    XML / XSL wpf com xml help tutorial

  • How to insert Comma between templates
    S Sushant_Mathur

    Thanks for reply George but still its not working :((

    Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    XML / XSL wpf com xml help tutorial

  • How to insert Comma between templates
    S Sushant_Mathur

    I am using xsl:apply-templates and between result of every template i want to insert comma(",") so my code for the same is as below: , but above code is not working,please help me.. Thanks in advance. Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    XML / XSL wpf com xml help tutorial

  • An emphatic victory...............
    S Sushant_Mathur

    hummm....it is not a bad thing that we indians are mad for this game..after all we have won world cup once...

    Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    The Lounge game-dev

  • An emphatic victory...............
    S Sushant_Mathur

    hummm....so which game u denmarki's play...actually i haven't heared that you guys do something...and it is not a bad thing that we indians are mad for this game..after all we have won world cup once...

    Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    The Lounge game-dev

  • displaying an image with the path in the xml?
    S Sushant_Mathur

    You can use XSLT to create HTML page of your XML data and image should be there..means path you have specified...same like in HTML we have imgae in the source location... hope i have replied answer of your question correctly :)

    Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    XML / XSL question xml

  • Diffgram in ASP.NET
    S Sushant_Mathur

    A DiffGram is an XML format that is used to identify current and original versions of data elements. The DataSet uses the DiffGram format to load and persist its contents, and to serialize its contents for transport across a network connection. When a DataSet is written as a DiffGram, it populates the DiffGram with all the necessary information to accurately recreate the contents, though not the schema, of the DataSet, including column values from both the Original and Current row versions, row error information, and row order. Reference Link: http://www.techinterviews.com/?p=78[^]

    Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    XML / XSL csharp asp-net tutorial

  • displaying an image with the path in the xml?
    S Sushant_Mathur

    You can take value of LogoPath tag in a xsl:variable and then assign that varible to src attribute of img tag like

    Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    XML / XSL question xml

  • Disable Right Click In A Web Page
    S Sushant_Mathur

    you can use simple javascript buttonclick detection and put a alert there,see below links: http://forums.devarticles.com/javascript-development-22/disabling-right-click-in-javascript-4571.html[^] http://www.puterdeco.com/scripts/no-right-click.html[^] Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    Web Development

  • How to parse XML file in VB 6.0
    S Sushant_Mathur

    Hi, I want to parse XML file with MSXML4.0 in VISUAL BASIC 6.0(not vb.net)but problem with my code is it's showing only one error at a time..but i need to show all the parsing error, my code is as below: ----- Dim schemaCache As MSXML2.XMLSchemaCache40 Set schemaCache = New MSXML2.XMLSchemaCache40 schemaCache.Add "", "MySchema.xsd" Dim doc As MSXML2.DOMDocument40 Set doc = New MSXML2.DOMDocument40 Set doc.schemas = schemaCache doc.async = False If Not doc.Load("MyXML.xml") Then MsgBox "Error loading XML document: " & doc.parseError.reason Else MsgBox "File parsed successfully." End If ------------ please help me its urgent,thanks in advance Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    Visual Basic help csharp com xml

  • xml to xsd validation in vbscript
    S Sushant_Mathur

    hope u have done with this problem yet but for ur help u can chk this Vb code below: Set schemaCache = New MSXML2.XMLSchemaCache40 Dim doc As MSXML2.DOMDocument40 Dim xsd Set doc = New MSXML2.DOMDocument40 xsd = RTReg.getValue("xsd_path") schemaCache.Add "", xsdpath 'Check the file with xsd Set doc.schemas = schemaCache 'add schema with the file doc.async = False If Not doc.Load(sOutputFile) Then 'XML file not parsed Else 'successfully parsed End If Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    XML / XSL tutorial com sysadmin xml help

  • Pankaj
    S Sushant_Mathur

    Hey Rizwan,i saw ur last replay and got to know how cheap and rubbish you can say to a member like Guffa who is always very very helpful to others. Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    Web Development security

  • Pankaj
    S Sushant_Mathur

    Hey i am surprised that there are still some people left in this world who don't know how to send mails to each other:laugh: Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    Web Development security

  • m how to pass the value from one page to another page in asp.net
    S Sushant_Mathur

    You can put that value in the hidden field and Request that value in the page where you are posting your data. Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    Web Development question csharp asp-net help tutorial

  • Javascript Date Comparision
    S Sushant_Mathur

    You can check this link below,having comparedate() function and all you need http://www.mattkruse.com/javascript/date/source.html[^] Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    Web Development javascript tutorial question

  • How to use Download option in ASP...
    S Sushant_Mathur

    if u have file to be downloaded on your server just give hyperlink to that file and automatically a winodw will appear when user click on that link.... am i not right???? Sushant Mathur Bangalore, INDIA. http://n.domaindlx.com/fun2ssh/HOME.htm

    Web Development help tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups