How can I write a application, so that it can be startup in web?
-
How can I write a application, so that it can be startup in web? May I have a detail step to do so?
If I understand your question, you want to write an ASP.NET application. This will be web-based and run through a browser. Current blacklist svmilky - Extremely rude | FeRtoll - Rude personal emails | ironstrike1 - Rude & Obnoxious behaviour
-
If I understand your question, you want to write an ASP.NET application. This will be web-based and run through a browser. Current blacklist svmilky - Extremely rude | FeRtoll - Rude personal emails | ironstrike1 - Rude & Obnoxious behaviour
-
Um ... However, The application is using to get and create a number of files in client side... So, I think it should not be in ASP.NET ...
By default, a web application doesn't have the permissions to do this. For security reasons, the machines file system and other hardware resources are off-limits to any code running inside a web browser. For any further information, you're going to have to explain what you want to do in greater detail. Dave Kreskowiak Microsoft MVP - Visual Basic -- modified at 15:38 Tuesday 25th April, 2006
-
By default, a web application doesn't have the permissions to do this. For security reasons, the machines file system and other hardware resources are off-limits to any code running inside a web browser. For any further information, you're going to have to explain what you want to do in greater detail. Dave Kreskowiak Microsoft MVP - Visual Basic -- modified at 15:38 Tuesday 25th April, 2006
Thank you first. In my task, I need to get some files from the client machine with some input and save them to file server and add a row in database. I have a application to do so. However, In some case, the user will need to reference the old file which display in a asp, I would like to pass the reference (a integer) to the client application, so that the application can indicate that the relationship between the two files (Actually, I am going to do file versioning.) I am finding a solution that user no need to enter any key to do that, but just a click for check out the document and then open the client application to finish the process. (I cannot simply use the asp upload since the user selected a file and the application will have some process in client machine, I don't want those process done in server.)