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
D

DIMPLE_R

@DIMPLE_R
About
Posts
32
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • XQuery : Filter out duplicates [modified]
    D DIMPLE_R

    Got it with "distinct-values" :) { let $a := doc("http://www.bn.com/bib.xml")//author for $last in distinct-values($a/last), $first in distinct-values($a[last=$last]/first) return {$last}{$first} }

    XML / XSL tutorial question database com xml

  • XQuery : Filter out duplicates [modified]
    D DIMPLE_R

    I have an XML file which stores information of authors and books written by them. The following XQuery returns me a list of authors:- { for $b in doc("http://www.bn.com/bib.xml")//author return } However the resultset returned is:- - (since there could be more than 1 book written by an author) How do I change the above query to filter out duplicates? I saw a few sites which suggested using 'intersect'.I also came across the distinct-values function But I do not know how to use it in this example. Pls suggest:~ -- modified at 7:47 Thursday 13th July, 2006

    XML / XSL tutorial question database com xml

  • write the xml contents into text box [modified]
    D DIMPLE_R

    Try this in your code-behind file: string strPath = "xmlFolder/MyXMLFile.xml"; StreamReader objSR = new StreamReader(Server.MapPath(strPath), Encoding.Default); string strSRcontent = objSR.ReadToEnd(); Textbox1.Text = strSRcontent; --Dimple

    XML / XSL csharp question xml help

  • Line Control in vb.net
    D DIMPLE_R

    Don't know if its the right way of doing it but you can try this;) Take a panel control set the height to 1 set backcolor to black Try it out :)

    Visual Basic csharp question

  • Generating HTML FROM XML File
    D DIMPLE_R

    Hi, Refer to the following example and see if it helps with your code: Myxml.xml:- 8 Wily Widgets 9 Willy Wonka Myxsl.xsl:-

    Create the above 2 files and view the Myxml.xml in the browser ...See if this example helps you with your problem --Dimple -- modified at 4:49 Thursday 6th July, 2006

    ASP.NET xml html database help

  • catching return value from javascript function in asp.net code behind
    D DIMPLE_R

    You can try something like this: Javascript Code: function confirmdissociation () { //alert("In Code"); if (confirm("Are you sure to perform this action?")==true) { document.getElementById("TextBox1").innerText ="true"; return true; } else { document.getElementById("TextBox1").innerText ="false"; return false; } } In Code Behind: private void Page_Load(object sender, System.EventArgs e) { Button1.Attributes.Add("onclick", "confirmdissociation();"); } --Dimple

    ASP.NET csharp javascript asp-net tools help

  • TreeView in javascripting.
    D DIMPLE_R

    See if this helps http://www.codeproject.com/jscript/tree\_view.asp

    ASP.NET

  • How to use textbox value in sql statement
    D DIMPLE_R

    Hi.. The part of the SQL statement that you've sent seems correct...You need to get a specific error to understand what exactly is going wrong.. You can do one thing, use Try-Catch to handle the exception. Try //code Catch ex as OleDbException' MessageBox.Show(ex.Message) End Try

    C# database help tutorial question

  • Line Control in vb.net
    D DIMPLE_R

    Use "Horizontal Rule" from the HTML section from your toolbox :) or just insert an HR tag in your HTML code as follows


    -- modified at 3:10 Thursday 6th July, 2006

    Visual Basic csharp question

  • Shedding Light on Stored Procedures
    D DIMPLE_R

    Try these links http://www.devcity.net/Articles/34/msaccess\_sp2.aspx http://www.devcity.net/Articles/18/msaccess\_sp.aspx --Dimple

    Visual Basic question csharp database help

  • How to use textbox value in sql statement
    D DIMPLE_R

    What's the error that you are getting? -- modified at 2:52 Thursday 6th July, 2006

    C# database help tutorial question

  • how to use Find mothod of DataView object in C#?
    D DIMPLE_R

    Finds a row in the DataView by the specified sort key value. You may want to refer to: http://www.akadia.com/services/dotnet\_find\_methods.html

    C# question csharp tutorial

  • How to Make text box to aceept numeric values only?
    D DIMPLE_R

    Use client-side code to validate the data entered..a javascript function will work fine... Refer to: http://www.shiningstar.net/articles/articles/javascript/checkNumeric.asp?ID=AW

    C# csharp tutorial question

  • Generating a Typed DataSet from an XSD-file in VS 2005
    D DIMPLE_R

    See if this helps.. http://hacks.oreilly.com/pub/h/5157 http://aspnet.4guysfromrolla.com/articles/020806-1.aspx

    C# visual-studio question csharp tools

  • how to display a gif image in vb.net and vb?
    D DIMPLE_R

    Select the imageurl property of an image control and go. It even animates in the designer. :) Also refer to http://www.a1vbcode.com/vbtip.asp?ID=6 --Dimple

    Visual Basic csharp help tutorial question

  • How to send values from one page to another asp.net
    D DIMPLE_R

    There are various ways..Through Session objects,Query Strings ..All depends on your requirement Check this : http://msdn2.microsoft.com/en-us/library/50x35554.aspx

    ASP.NET csharp asp-net tutorial

  • getting next row data into focus
    D DIMPLE_R

    Hi Glen, You may want to check this link http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbwlkwalkthroughdisplayingdatainwindowsformusingparameterizedquery.asp Hope it helps --Dimple

    Database csharp database help tutorial question

  • Playing video files with in a .aspx page
    D DIMPLE_R

    Check this : http://www.velocityreviews.com/forums/t116810-video-in-aspx.html

    ASP.NET question

  • Datagrid item count while paging........
    D DIMPLE_R

    Why can't you just derive the number of rows from the returned dataset? something like: ds.Tables(0).Rows.Count

    ASP.NET css help

  • java script problem
    D DIMPLE_R

    hi, I'm not sure what you are trying to do..and i think there may be a problem with your syntax: I tried something similar as follows: function check() { var al=new Array(); al[0]=1; al[1]=2; for(var j=0;j<=3;j++) { //alert(window.document.Form1.Text3.value); alert(al[j]); if(window.document.Form1.Text3.value==al[j]) { //alert("in"); return true; } else { alert("else"); //return false; } } }

    C# java tools help question
  • Login

  • Don't have an account? Register

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