Ask a Question related to ASP.NET General, Design and Development.
-
Brian B. #1
Compiling a ASP.NET project on the server with vbc.exe
Hi,
I have an ASP.NET project written in VB.NET on a server. I have made a few
changes to some files using notepad while remotely connected to the server.
How can I compile the project on the server (that doesn't have VS.NET
installed on it) so that the changes take affect?
I've tried playing around with vbc.exe but I couldn't get the parameters
right - it kept reporting missing references etc.
Here is the structure of the VS.NET solution:
- vs.net.project.1 (with aspx/vb files)
- - references (vs.net.project.2, system.data, system.drawing, system.web,
system.xml )
- - subdirecoty1 (with aspx/vb files)
- - subdirectory2 (with aspx/vb files)
- vs.net.project.2 (with vb class files)
- - references (3rd.party.dll, system.data, system.drawing, system.web,
system.xml )
Here is the directory structure on the server:
c:\websites\vs.net.project.1.website\ (with aspx/vb files)
c:\websites\vs.net.project.1.website\bin (with vs.net.project.1.dll,
vs.net.project2.dll, 3rd.party.dll)
c:\websites\vs.net.project.1.website\subdirectory1 (with aspx/vb files)
c:\websites\vs.net.project.1.website\subdirectory2 (with aspx/vb files)
c:\websites\vs.net.project.1.website\vs.net.projec t.2.folder\ (with vb class
files)
c:\websites\vs.net.project.1.website\vs.net.projec t.2.folder\bin (with
3rd.party.dll, vs.net.project.2.dll)
Any help would be greatly appreciated.
Thanks!
Brian
Brian B. Guest
-
do I need comm server for this project ??
I would like to know if I need to purchase the $499 comm. server in order to have a flash site where a video of a person talking will be displayed ?... -
Error when compiling ARSPerl-1.81 on a unix server
This is my first attempt to compile a module on a unix server. It appears the "perl Makefile.pl" command ran without error. Other info: -... -
Help with creating ASP.NET project using VS.NET on a Server
Hi, I have been trying to create a Web project since day 1 of VS.NET 2002 and now VS.NET 2003. I am trying to create a project on a W2K Server... -
Deploying asp.net project at web server
I am new for asp.net programming. My simple.aspx page is working properly in my localhost. After copy this project from Microsoft Visual Basic.NET... -
Real problems in compiling Apache Web Server with Open Server 5.0.6
Since a few days i've trialed to compile the Apache Web-Server 1.3.27 with SCO Open Server 5.0.6. Unfortunately with almost no success. 1.) I... -
Chris R. Timmons #2
Re: Compiling a ASP.NET project on the server with vbc.exe
"Brian B." <brianbb@san.rr.com> wrote in
news:CU0La.85362$49.3164388@twister.socal.rr.com:
Brian,> Hi,
>
> I have an ASP.NET project written in VB.NET on a server. I have
> made a few changes to some files using notepad while remotely
> connected to the server. How can I compile the project on the
> server (that doesn't have VS.NET installed on it) so that the
> changes take affect?
Can you execute a process on the server (e.g. can you do something
like a Telnet session)? If so, you can use VS.NET in command-line
mode to compile your solution. Enter "devenv /?" to get info on how
to build a solution this way. Also see:
[url]http://msdn.microsoft.com/library/en-[/url]
us/vsintro7/html/vxgrfCommandLineSwitches.asp
The simplest case may be to switch to the folder your solution is in,
and enter something like "devenv /build debug mysolution.sln". (You
can replace "debug" with "release" to build a release version).
Hope this helps.
Chris.
-------------
C.R. Timmons Consulting, Inc.
[url]http://www.crtimmonsinc.com/[/url]
Chris R. Timmons Guest
-
Chance Hopkins #3
Re: Compiling a ASP.NET project on the server with vbc.exe
from run box:
cmd
%VSCOMNTOOLS%vsvars32.bat
vbc /?
start reading
good luck...
"Brian B." <brianbb@san.rr.com> wrote in message
news:CU0La.85362$49.3164388@twister.socal.rr.com.. .few> Hi,
>
> I have an ASP.NET project written in VB.NET on a server. I have made aserver.> changes to some files using notepad while remotely connected to theclass> How can I compile the project on the server (that doesn't have VS.NET
> installed on it) so that the changes take affect?
>
> I've tried playing around with vbc.exe but I couldn't get the parameters
> right - it kept reporting missing references etc.
>
> Here is the structure of the VS.NET solution:
>
> - vs.net.project.1 (with aspx/vb files)
> - - references (vs.net.project.2, system.data, system.drawing, system.web,
> system.xml )
> - - subdirecoty1 (with aspx/vb files)
> - - subdirectory2 (with aspx/vb files)
>
> - vs.net.project.2 (with vb class files)
> - - references (3rd.party.dll, system.data, system.drawing, system.web,
> system.xml )
>
> Here is the directory structure on the server:
>
> c:\websites\vs.net.project.1.website\ (with aspx/vb files)
> c:\websites\vs.net.project.1.website\bin (with vs.net.project.1.dll,
> vs.net.project2.dll, 3rd.party.dll)
> c:\websites\vs.net.project.1.website\subdirectory1 (with aspx/vb files)
> c:\websites\vs.net.project.1.website\subdirectory2 (with aspx/vb files)
> c:\websites\vs.net.project.1.website\vs.net.projec t.2.folder\ (with vb> files)
> c:\websites\vs.net.project.1.website\vs.net.projec t.2.folder\bin (with
> 3rd.party.dll, vs.net.project.2.dll)
>
> Any help would be greatly appreciated.
>
> Thanks!
>
> Brian
>
>
Chance Hopkins Guest
-
Brian B. #4
Re: Compiling a ASP.NET project on the server with vbc.exe
Chris,
Even though I do have remote access to this server with execute
permissions, I don't have the VS.NET installed on the box. I assume
that's why I can't execute devenv tool.
Thanks,
Bojan
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Brian B. Guest
-
Chance Hopkins #5
Re: Compiling a ASP.NET project on the server with vbc.exe
I think all you need is the sdk for the vb compiler...
that's the "vbc" I mentioned below
"Brian B." <brianbb@san.rr.com> wrote in message
news:eQOl$GGQDHA.2316@TK2MSFTNGP11.phx.gbl...> Chris,
>
> Even though I do have remote access to this server with execute
> permissions, I don't have the VS.NET installed on the box. I assume
> that's why I can't execute devenv tool.
>
> Thanks,
>
> Bojan
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!
Chance Hopkins Guest



Reply With Quote

