Click here to Skip to main content
15,912,400 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralHi, Pin
Anuradha61215-Dec-07 1:24
Anuradha61215-Dec-07 1:24 
GeneralRe: Hi, Pin
Bassam Saoud15-Dec-07 2:08
Bassam Saoud15-Dec-07 2:08 
GeneralRe: Hi, Pin
Michael Sync15-Dec-07 3:53
Michael Sync15-Dec-07 3:53 
GeneralHi, Pin
Sathesh Sakthivel15-Dec-07 6:33
Sathesh Sakthivel15-Dec-07 6:33 
GeneralRe: Hi, Pin
Pete O'Hanlon16-Dec-07 11:36
mvePete O'Hanlon16-Dec-07 11:36 
Generaladd water mark on image in c# Pin
pooja vaidvan15-Dec-07 1:08
pooja vaidvan15-Dec-07 1:08 
GeneralRe: add water mark on image in c# Pin
wEb GuRu...15-Dec-07 3:04
wEb GuRu...15-Dec-07 3:04 
GeneralThe main Issue on Browse folder in Web application Pin
Vishnu Narayan Mishra15-Dec-07 0:42
Vishnu Narayan Mishra15-Dec-07 0:42 
Hello everyone
I want to phrase my problem in a new way that the following code works well on the same system on debugging mode of the project but If I want to copy the url of the project and paste into new browser window without debugging mode, then the problem arises that Its shows progressing the browse folder dialog box does not appears any how. So If any one have the solution of my problem please reply me soon....
I written earlier on this topic shown below...
---------------
I am facing a problem of browse folder. Its working fine on loacalhost but when I upload my project into my client's server, the browse folder dialog box does not appears any how. It giving no error but browser progress bar shows progressing....
Is the reason behind this is I have used Shell32.dll for browse folder.. Or there is another way of implementing browse folder functionality on my project..
Thanks
following is mine code
-------------------------------------------------------
Using shell32;
protected void AddFolder_Click(object sender, EventArgs e)
{
string strPath = "";
string strCaption = "Browse a directory for uploading Album.";
//DialogResult dlgResult;
string dlgResult = "";
Shell32.ShellClass shl = new Shell32.ShellClass();
Shell32.Folder2 fld = (Shell32.Folder2)shl.BrowseForFolder(0, strCaption, 0, System.Reflection.Missing.Value);
if (fld == null)
{
dlgResult = "Cancel";//DialogResult.Cancel;
}
else
{
strPath = fld.Self.Path;
lstboxFile.Items.Add(strPath);
//strPath = "albums\\MSN Home Page";
lstboxFile.Items.Add(strPath);
BaydonConstants.hif1.Add(strPath);
dlgResult = "Ok";//DialogResult.OK;
}
}

-------------------------------------------------------
Vishnu Narayan Mishra
Software Engineer
<div class="ForumMod">modified on Monday, December 17, 2007 7:16:26 AM</div>
GeneralRe: What to do on my code for browsing folder Pin
Bassam Saoud15-Dec-07 0:52
Bassam Saoud15-Dec-07 0:52 
GeneralRe: What to do on my code for browsing folder Pin
Vishnu Narayan Mishra15-Dec-07 2:12
Vishnu Narayan Mishra15-Dec-07 2:12 
GeneralRe: What to do on my code for browsing folder Pin
Bassam Saoud15-Dec-07 2:20
Bassam Saoud15-Dec-07 2:20 
GeneralMedium Trust ASP.NET Pin
Michael Sync15-Dec-07 5:24
Michael Sync15-Dec-07 5:24 
GeneralRe: Medium Trust ASP.NET Pin
Bassam Saoud15-Dec-07 7:38
Bassam Saoud15-Dec-07 7:38 
GeneralRe: Medium Trust ASP.NET Pin
Michael Sync15-Dec-07 17:21
Michael Sync15-Dec-07 17:21 
GeneralRe: What to do on my code for browsing folder Pin
Michael Sync15-Dec-07 4:18
Michael Sync15-Dec-07 4:18 
Generalerror while opening downloaded mdb file Pin
surjith15-Dec-07 0:03
surjith15-Dec-07 0:03 
GeneralRe: error while opening downloaded mdb file Pin
Christian Graus15-Dec-07 0:12
protectorChristian Graus15-Dec-07 0:12 
GeneralCalendar Popup for master pages in ASP.Net using javascript Pin
sivaraman_sankaranarayanan14-Dec-07 23:35
sivaraman_sankaranarayanan14-Dec-07 23:35 
GeneralRe: Calendar Popup for master pages in ASP.Net using javascript Pin
Michael Sync15-Dec-07 4:21
Michael Sync15-Dec-07 4:21 
QuestionHow to make the Next and button of a WizardStep Invisible Pin
Rocky#14-Dec-07 22:51
Rocky#14-Dec-07 22:51 
GeneralCreate a comparison chart Pin
SUDHAKAR PALLAM14-Dec-07 21:53
SUDHAKAR PALLAM14-Dec-07 21:53 
GeneralRe: Create a comparison chart Pin
pmarfleet14-Dec-07 22:13
pmarfleet14-Dec-07 22:13 
GeneralRe: Create a comparison chart [modified] Pin
SUDHAKAR PALLAM14-Dec-07 22:32
SUDHAKAR PALLAM14-Dec-07 22:32 
GeneralRe: Create a comparison chart Pin
Bassam Saoud14-Dec-07 22:29
Bassam Saoud14-Dec-07 22:29 
QuestionHow to Display Image in Gridview from Sqlserver 2005 in C# Pin
mrgaddam14-Dec-07 21:41
mrgaddam14-Dec-07 21:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.