thanks for reply, im now start working on it.
Punit Belani
Posts
-
retrive client logical drives in alternative of Directory.GetLogicalDrive which used in server side -
retrive client logical drives in alternative of Directory.GetLogicalDrive which used in server sidefirst 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.
-
Redirect with querystringyes, @Sandeep Mewara is true. there are many ways for decrypt your encryption. never use sensitive data in querystring.
-
retrive client logical drives in alternative of Directory.GetLogicalDrive which used in server sidehi, 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
-
implement a dicom viewer using asp.net + C#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.
-
implement a dicom viewer using asp.net + C#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..
-
clear form data (IE problem)ok fine. thanks again.
-
clear form data (IE problem)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?
-
clear form data (IE problem)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.
-
clear form data (only IE problem)hi thatraja, i think this question is relevant to both c# and ASP.net. anyway thanks for suggestion.
-
clear form data (only IE problem)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.
-
clear form data (IE problem)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.
-
export data to pdf in asp.net?I want to export textbox value into pdf file in asp.net
-
Dynamic menu - display the appropritate page based upon menu item selectedI have a database driven menu (dynamic menu). Can someone help me with code to display the appropritate page based upon menu item selected
-
retrive child and sub child from table [modified]ok... i understand ur method, but i faced problem to create procedure.. can you reply me demo procedure??? thanks..
-
retrive child and sub child from table [modified]ok.. waitin for ur reply.. thanks..
-
retrive child and sub child from table [modified]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..
-
retrive child and sub child from table [modified]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
-
retrive child and sub child from tablei 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
-
display menu items based on database table valuesi 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?