batch file to open asp.net web forms

Bigjimmo

Member
Joined
Jun 25, 2003
Messages
7
I need to make a batch file that can open individual web forms of my asp.net project. Does anybody know how I can do this?

Cheers

Jim
 
I dont know if i understood you right and why to do this...
but type following in your batch:

Code:
%1.aspx
%1.aspx.cs

Thats all your .bat file includes

To start any File type following: mybatch webform1

mybatch is the name of the .bat file and
webform1 is webform1.aspx and webform1.aspx.cs

Is that you needed?
 
Thanks for your help webjumper.

What im trying to do is to make a batch file that can compile the web form. i.e when you use Visual Studio you have aspx files, aspx.vb files etc. When you press F5, the web form compiles and you get a preview of what the web application would look like in the browser.

Thats what i want to do. A batch file that can present the web application in the same way you would see it in a browser.

Is that clear?

Thanks for your help

Jim
 
Back
Top