473,626 Members | 3,965 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

OpenfileDialog in ASP.NET code behind ILLEGAL ?

In my asp.net page I'm attempting to use the OpenfileDialog object to
offer a common dialog box for the user to select a particular file on their
hard drive that may subsequently be uploaded
to our website.
The reason I'm doing it this way is that I've read that by using the common
dialog box, the security issues are based on the logged in user.

Of course, I added a reference to System.Windows. Forms and added a using
clause.

Here's the problem, when I use the following code

OpenFileDialog ofd = new OpenFileDialog( );
ofd.Title = "Choose File";
ofd.InitialDire ctory = @"c:\" ;
ofd.Filter = "All files (*.*)|*.*|All files (*.*)|*.*" ;
ofd.FilterIndex = 1 ;
ofd.RestoreDire ctory = true ;
ofd.ShowDialog( );

ShowDialog() throws the following exception:

[InvalidOperatio nException: It is invalid to show a modal dialog or form
when the application is not running in
UserInteractive mode. Specify the ServiceNotifica tion or DefaultDesktopO nly
style to display a notification
from a service application.]
System.Windows. Forms.CommonDia log.ShowDialog( )
TestPortal1.Att achFileForm.btn Browse_Click(Ob ject sender, EventArgs e) in
c:\inetpub\wwwr oot\testportal1 \attachfileform .aspx.cs:73
System.Web.UI.W ebControls.Butt on.OnClick(Even tArgs e)
System.Web.UI.W ebControls.Butt on.System.Web.U I.IPostBackEven tHandler.RaiseP ostBackEvent(St ring
eventArgument)
System.Web.UI.P age.RaisePostBa ckEvent(IPostBa ckEventHandler
sourceControl, String eventArgument)
System.Web.UI.P age.RaisePostBa ckEvent(NameVal ueCollection postData)
System.Web.UI.P age.ProcessRequ estMain()

Any advise you can give would be greatly appreciated.

Thanks,
IpPhD
Nov 19 '05 #1
4 10191
It just doesn't work.

ASP.Net only works by rendering legitimate html, css and
javascript...br owsers have no idea what/how an OpenFileDialog is/works....

you need to use an HtmlFileInput.. .no alterantives unless you can use an ocx
or some java (not script).

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/ - New and Improved (yes, the popup is annoying)
http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
"hullnwm" <hu*****@nospam .nospam> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
In my asp.net page I'm attempting to use the OpenfileDialog object to
offer a common dialog box for the user to select a particular file on
their hard drive that may subsequently be uploaded
to our website.
The reason I'm doing it this way is that I've read that by using the
common dialog box, the security issues are based on the logged in user.

Of course, I added a reference to System.Windows. Forms and added a using
clause.

Here's the problem, when I use the following code

OpenFileDialog ofd = new OpenFileDialog( );
ofd.Title = "Choose File";
ofd.InitialDire ctory = @"c:\" ;
ofd.Filter = "All files (*.*)|*.*|All files (*.*)|*.*" ;
ofd.FilterIndex = 1 ;
ofd.RestoreDire ctory = true ;
ofd.ShowDialog( );

ShowDialog() throws the following exception:

[InvalidOperatio nException: It is invalid to show a modal dialog or form
when the application is not running in
UserInteractive mode. Specify the ServiceNotifica tion or
DefaultDesktopO nly style to display a notification
from a service application.]
System.Windows. Forms.CommonDia log.ShowDialog( )
TestPortal1.Att achFileForm.btn Browse_Click(Ob ject sender, EventArgs e)
in c:\inetpub\wwwr oot\testportal1 \attachfileform .aspx.cs:73
System.Web.UI.W ebControls.Butt on.OnClick(Even tArgs e)

System.Web.UI.W ebControls.Butt on.System.Web.U I.IPostBackEven tHandler.RaiseP ostBackEvent(St ring
eventArgument)
System.Web.UI.P age.RaisePostBa ckEvent(IPostBa ckEventHandler
sourceControl, String eventArgument)
System.Web.UI.P age.RaisePostBa ckEvent(NameVal ueCollection postData)
System.Web.UI.P age.ProcessRequ estMain()

Any advise you can give would be greatly appreciated.

Thanks,
IpPhD

Nov 19 '05 #2
I think you'll find that System.Windows. Forms is only for Windows
applications - Not for ASP.Net apps.

Have a Google for u0ploading files with ASP.Net.

"hullnwm" <hu*****@nospam .nospam> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
In my asp.net page I'm attempting to use the OpenfileDialog object to
offer a common dialog box for the user to select a particular file on
their hard drive that may subsequently be uploaded
to our website.
The reason I'm doing it this way is that I've read that by using the
common dialog box, the security issues are based on the logged in user.

Of course, I added a reference to System.Windows. Forms and added a using
clause.

Here's the problem, when I use the following code

OpenFileDialog ofd = new OpenFileDialog( );
ofd.Title = "Choose File";
ofd.InitialDire ctory = @"c:\" ;
ofd.Filter = "All files (*.*)|*.*|All files (*.*)|*.*" ;
ofd.FilterIndex = 1 ;
ofd.RestoreDire ctory = true ;
ofd.ShowDialog( );

ShowDialog() throws the following exception:

[InvalidOperatio nException: It is invalid to show a modal dialog or form
when the application is not running in
UserInteractive mode. Specify the ServiceNotifica tion or
DefaultDesktopO nly style to display a notification
from a service application.]
System.Windows. Forms.CommonDia log.ShowDialog( )
TestPortal1.Att achFileForm.btn Browse_Click(Ob ject sender, EventArgs e)
in c:\inetpub\wwwr oot\testportal1 \attachfileform .aspx.cs:73
System.Web.UI.W ebControls.Butt on.OnClick(Even tArgs e)

System.Web.UI.W ebControls.Butt on.System.Web.U I.IPostBackEven tHandler.RaiseP ostBackEvent(St ring
eventArgument)
System.Web.UI.P age.RaisePostBa ckEvent(IPostBa ckEventHandler
sourceControl, String eventArgument)
System.Web.UI.P age.RaisePostBa ckEvent(NameVal ueCollection postData)
System.Web.UI.P age.ProcessRequ estMain()

Any advise you can give would be greatly appreciated.

Thanks,
IpPhD

Nov 19 '05 #3
It's really not going to work the way you're doing it. What exactly are you
trying to accomplish?
This article shows you how to allow file uploads in ASP.NET.
http://SteveOrr.net/articles/EasyUploads.aspx

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"hullnwm" <hu*****@nospam .nospam> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
In my asp.net page I'm attempting to use the OpenfileDialog object to
offer a common dialog box for the user to select a particular file on
their hard drive that may subsequently be uploaded
to our website.
The reason I'm doing it this way is that I've read that by using the
common dialog box, the security issues are based on the logged in user.

Of course, I added a reference to System.Windows. Forms and added a using
clause.

Here's the problem, when I use the following code

OpenFileDialog ofd = new OpenFileDialog( );
ofd.Title = "Choose File";
ofd.InitialDire ctory = @"c:\" ;
ofd.Filter = "All files (*.*)|*.*|All files (*.*)|*.*" ;
ofd.FilterIndex = 1 ;
ofd.RestoreDire ctory = true ;
ofd.ShowDialog( );

ShowDialog() throws the following exception:

[InvalidOperatio nException: It is invalid to show a modal dialog or form
when the application is not running in
UserInteractive mode. Specify the ServiceNotifica tion or
DefaultDesktopO nly style to display a notification
from a service application.]
System.Windows. Forms.CommonDia log.ShowDialog( )
TestPortal1.Att achFileForm.btn Browse_Click(Ob ject sender, EventArgs e)
in c:\inetpub\wwwr oot\testportal1 \attachfileform .aspx.cs:73
System.Web.UI.W ebControls.Butt on.OnClick(Even tArgs e)

System.Web.UI.W ebControls.Butt on.System.Web.U I.IPostBackEven tHandler.RaiseP ostBackEvent(St ring
eventArgument)
System.Web.UI.P age.RaisePostBa ckEvent(IPostBa ckEventHandler
sourceControl, String eventArgument)
System.Web.UI.P age.RaisePostBa ckEvent(NameVal ueCollection postData)
System.Web.UI.P age.ProcessRequ estMain()

Any advise you can give would be greatly appreciated.

Thanks,
IpPhD

Nov 19 '05 #4
Hi Steve,
Thanks for setting me straight and thank you very much for the link. It
helped immensely.
Thanks again,
ipPhD

"Steve C. Orr [MVP, MCSD]" <St***@Orr.ne t> wrote in message
news:ez******** ******@TK2MSFTN GP09.phx.gbl...
It's really not going to work the way you're doing it. What exactly are
you trying to accomplish?
This article shows you how to allow file uploads in ASP.NET.
http://SteveOrr.net/articles/EasyUploads.aspx

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"hullnwm" <hu*****@nospam .nospam> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
In my asp.net page I'm attempting to use the OpenfileDialog object to
offer a common dialog box for the user to select a particular file on
their hard drive that may subsequently be uploaded
to our website.
The reason I'm doing it this way is that I've read that by using the
common dialog box, the security issues are based on the logged in user.

Of course, I added a reference to System.Windows. Forms and added a using
clause.

Here's the problem, when I use the following code

OpenFileDialog ofd = new OpenFileDialog( );
ofd.Title = "Choose File";
ofd.InitialDire ctory = @"c:\" ;
ofd.Filter = "All files (*.*)|*.*|All files (*.*)|*.*" ;
ofd.FilterIndex = 1 ;
ofd.RestoreDire ctory = true ;
ofd.ShowDialog( );

ShowDialog() throws the following exception:

[InvalidOperatio nException: It is invalid to show a modal dialog or form
when the application is not running in
UserInteractive mode. Specify the ServiceNotifica tion or
DefaultDesktopO nly style to display a notification
from a service application.]
System.Windows. Forms.CommonDia log.ShowDialog( )
TestPortal1.Att achFileForm.btn Browse_Click(Ob ject sender, EventArgs e)
in c:\inetpub\wwwr oot\testportal1 \attachfileform .aspx.cs:73
System.Web.UI.W ebControls.Butt on.OnClick(Even tArgs e)

System.Web.UI.W ebControls.Butt on.System.Web.U I.IPostBackEven tHandler.RaiseP ostBackEvent(St ring
eventArgument)
System.Web.UI.P age.RaisePostBa ckEvent(IPostBa ckEventHandler
sourceControl, String eventArgument)
System.Web.UI.P age.RaisePostBa ckEvent(NameVal ueCollection postData)
System.Web.UI.P age.ProcessRequ estMain()

Any advise you can give would be greatly appreciated.

Thanks,
IpPhD


Nov 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
360
by: bobrad | last post by:
MAYBE SOMEBODY CAM HELP I AM USING THE FOLLOWING CODE TO GET A LOCATION OF A FILE IN A WINFORM DIALOG OpenFileDialog openFileDialog = new OpenFileDialog(); OpenFileDialog.Filter = " Access (*.mdb)|*.mdb|All files (*.*)|*.*"; if (openFileDialog.ShowDialog() == DialogResult.OK) DataBaseLocation.Text = openFileDialog.FileName;
2
3074
by: don | last post by:
has anyone experienced problems with interactions between OpenFileDialog and FileStream? When I select "open" from an OpenFileDialog the subsequent calls to FileStream do not create a file. If I do anything else, eg, navigate to other folders, and then press "cancel" the file is created. This occurrs just with the simple code below. Any ideas private void button1_Click(object sender, System.EventArgs e // open the common dialog bo...
4
7990
by: Nagachandra Sekhar Grandhi | last post by:
I am facing a problem with OpenFileDialog. It is as follows. I opened OpenFileDialog dialog box and selected a folder in it. After selecting the folder when i tried to delete the same folder in Explorer i am getting error saying that cannot delete that folder as some process is using it. After that i selected a file from the same folder in OpenFileDialog. When i tried to delete the folder after selecting the file also it is giving the...
8
6037
by: e-mid | last post by:
why does not openFileDialog have closed event? i want to do something; as soon as the dialog closes. is there a way to do this?
6
4234
by: John | last post by:
Hi all: Is it possible to use an OpenFileDIalog from an ASP.NET application code behind file teh same way a Windows Application can? Thanks. John.
6
3000
by: barbara_dave | last post by:
Hi, All, I want to use the openfiledialog to open different extension files in different directory( only one type files at one time). I set the OpenFiledialog InitialDirectory and Filter property for ".dat" files at first time, it works. When I try to use openfiledialog to set different InitialDirectory an different Filter property for ".txt" files at second time, I got frozen window. Even I added code to dispose openfiledialog after...
1
2328
by: Shilpa | last post by:
Hi, I have a OpenFileDialog on my windows form whose filter is *.*. I want the users to be able to further filter the files by giving *.doc or *.zip etc in the "file name" field of the dialog (Just like it happens in the open file dialog of MS Word) Currently, if the user enters a wild card character in the file name field, it is throwing an exception with the message "Illegal characters in path". Please let me know how to achieve the...
6
872
by: Mike | last post by:
Hello all, I'm trying to work with the openfiledialog and being new to vb and vb.net I'm having some problems. Wherever I have Me.OpenFileDialog1 I keep getting the following error: C:\Visual Studio Projects\ImageLoad\OpenFileDialog1.vb(66): 'OpenFileDialog1' is not a member of 'ImageLoad.OpenFileDialog1'. Can someone please tell me why and how can I correct it. Here is my code. Thank you in advance.
0
2151
by: mbewers1 | last post by:
Hi I'm having a problem trying to get a customised OpenFileDialog() to fulfil my requirements. The code for this custom-built dialog has been taken from another site (http://www.codeproject.com/KB/dialog/FileDialogExtender.aspx) ) and allows the user to select the viewing method before opening the dialog to show a file directory. The following event is assigned to a button on my form which, when prompted, displays the dialog. public...
0
8266
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8199
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8705
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8365
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6125
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5574
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4092
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2626
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1511
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.