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
P

Punit Belani

@Punit Belani
About
Posts
24
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • retrive client logical drives in alternative of Directory.GetLogicalDrive which used in server side
    P Punit Belani

    thanks for reply, im now start working on it.

    ASP.NET csharp asp-net sysadmin help

  • retrive client logical drives in alternative of Directory.GetLogicalDrive which used in server side
    P Punit Belani

    first of all thanks for reply. i am new to scripting language, can you give some broader idea, for using java scripts for this purpose. or give some useful links.

    ASP.NET csharp asp-net sysadmin help

  • Redirect with querystring
    P Punit Belani

    yes, @Sandeep Mewara is true. there are many ways for decrypt your encryption. never use sensitive data in querystring.

    ASP.NET com security question

  • retrive client logical drives in alternative of Directory.GetLogicalDrive which used in server side
    P Punit Belani

    hi, everybody.. I want to retrieve client drives (in short file manager). Actually i am trying with Directory.GetLogicalDrive() function, but its returns logical drive of the server in which asp.net website is installed. i want logical drives from client PC.. i.e. i want to client to be select some files or folder from own PC and by that path i upload whole folder or files without using fileupload control limitations. im using this code right now foreach (string drive in Directory.GetLogicalDrives()) { TreeNode tn = new TreeNode(); tn.Text = drive; tn.Value = drive; TreeView1.Nodes.Add(tn); } thanks in advance... please i m really stuck at this. Best Regards, Punit Belani

    ASP.NET csharp asp-net sysadmin help

  • implement a dicom viewer using asp.net + C#
    P Punit Belani

    hi, happy to see Ur interest. :) Dicom viewer is one type of codec for displaying dicom images(one type of image format).dicom images specially used in medical science. like CT scan,Brain etc.

    ASP.NET csharp asp-net help

  • implement a dicom viewer using asp.net + C#
    P Punit Belani

    hi, I want to implement a dicom viewer using asp.net + C#. i want it for my web application. I am new to this one.. Plz help me..

    ASP.NET csharp asp-net help

  • clear form data (IE problem)
    P Punit Belani

    ok fine. thanks again.

    ASP.NET help database

  • clear form data (IE problem)
    P Punit Belani

    actually im trying wid this, according to searching guide. the exact scenario is as i mentioned in question. so what can i do, if i want on submit first insert data and then reset the form and then redirect to thanks page?

    ASP.NET help database

  • clear form data (IE problem)
    P Punit Belani

    i'm using like dis, function clear_form() { document.forms[0].reset(); } <form id="form1" runat="server" method="post" target="_self" onsubmit="this.clear_form();return true"> if you know any other way plz guide.

    ASP.NET help database

  • clear form data (only IE problem)
    P Punit Belani

    hi thatraja, i think this question is relevant to both c# and ASP.net. anyway thanks for suggestion.

    C# help database

  • clear form data (only IE problem)
    P Punit Belani

    i have one survey page (survey.aspx), on submit it inserts records in DB and redirect to (thanks.aspx). when again i used to execute same page its again insert data to DB and redirect to thanks.aspx page. but perticularly on IE(Internet explorer), second time & onwards its not inserting data and redirect to same page, i.e survey.aspx. i tried with page.forms[0].reset(); but its not working plz help. thanks in advance.

    C# help database

  • clear form data (IE problem)
    P Punit Belani

    i have one survey page (survey.aspx), on submit it inserts records in DB and redirect to (thanks.aspx). when again i used to execute same page its again insert data to DB and redirect to thanks.aspx page. but perticularly on IE(Internet explorer), second time & onwards its not inserting data and redirect to same page, i.e survey.aspx. i tried with page.forms[0].reset(); but its not working plz help. thanks in advance.

    ASP.NET help database

  • export data to pdf in asp.net?
    P Punit Belani

    I want to export textbox value into pdf file in asp.net

    ASP.NET csharp asp-net question

  • Dynamic menu - display the appropritate page based upon menu item selected
    P Punit Belani

    I have a database driven menu (dynamic menu). Can someone help me with code to display the appropritate page based upon menu item selected

    C# database help

  • retrive child and sub child from table [modified]
    P Punit Belani

    ok... i understand ur method, but i faced problem to create procedure.. can you reply me demo procedure??? thanks..

    ASP.NET csharp asp-net database tutorial question

  • retrive child and sub child from table [modified]
    P Punit Belani

    ok.. waitin for ur reply.. thanks..

    ASP.NET csharp asp-net database tutorial question

  • retrive child and sub child from table [modified]
    P Punit Belani

    actually i want perticulars child and sub childs.. if id is 2 den i want child of id 2, and sub childs of id 2,s child and so on..

    ASP.NET csharp asp-net database tutorial question

  • retrive child and sub child from table [modified]
    P Punit Belani

    sorry buddys it might be in wrong category, but i use ASP.NET platform for devloping so... now my question: i have table formated as three column: id,parent_id,name ex.. id /parent_id /name 1 /null /ABC1 2 /1 /ABC2 3 /1 /ABC3 4 /2 /ABC4 5 /4 /ABC5 6 /3 /ABC6 for example i wnt to retrive perticulars child and sub child of id 2 then it should give result: 2 /1 /ABC2 4 /2 /ABC4 5 /4 /ABC5 actually i want perticulars child and sub childs.. if id is 2 den i want child of id 2, and sub childs of id 2,s child and so on.. Please giv me appropriate query for it... thanks in advance

    modified on Wednesday, August 19, 2009 2:58 AM

    ASP.NET csharp asp-net database tutorial question

  • retrive child and sub child from table
    P Punit Belani

    i have table formated as three column: id,parent_id,name ex.. id /parent_id /name 1 /null /ABC1 2 /1 /ABC2 3 /1 /ABC3 4 /2 /ABC4 5 /4 /ABC5 6 /3 /ABC6 for example i wnt to retrive perticulars child and sub child of id 2 then it should give result: 2 /1 /ABC2 4 /2 /ABC4 5 /4 /ABC5 Please giv me appropriate query for it... thanks in advance

    MySQL database tutorial

  • display menu items based on database table values
    P Punit Belani

    i want to display a menu on user home page. The menu items will be added / updated by admin(client) in admin section after I deploy the project to him. He would be shown a page on which he would add the various menu items. These would be stored into databse and then displayed on menu at home page. Can someone help me with the code for implementing this?

    ASP.NET database 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