ASP - Help with deployment

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm new to ASP.NET and don't have a clue how to deploy code-behind pages. So
here are my questions...

Can I force VB.NET to create Inline .aspx pages?

If not, can you provide details on how to deploy an application? Everything
works on //localhost but I don't now which files to publish to the www or
where they need to be placed in order to function.

If this is too difficult to explain in e-mail, can you recommend a book that
THOROUGHLY explains this subject?

Thank you!
 
all you need to copy is the *.aspx files followed by the assembly which is
found in the /bin folder and optionally the web.config file. You don't *need
any other files. next, configure your virtual directory from iis to point to
the application directory on disk and you should be good to go.

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_________________________
 
Thanks, but do the support files need to be placed in a specific directory on
the web server. If so, what are those folders. I keep getting an error of
file not found.
Owen

Alvin Bruney said:
all you need to copy is the *.aspx files followed by the assembly which is
found in the /bin folder and optionally the web.config file. You don't *need
any other files. next, configure your virtual directory from iis to point to
the application directory on disk and you should be good to go.

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_________________________


Owen Ott said:
I'm new to ASP.NET and don't have a clue how to deploy code-behind pages.
So
here are my questions...

Can I force VB.NET to create Inline .aspx pages?

If not, can you provide details on how to deploy an application?
Everything
works on //localhost but I don't now which files to publish to the www or
where they need to be placed in order to function.

If this is too difficult to explain in e-mail, can you recommend a book
that
THOROUGHLY explains this subject?

Thank you!
 
if you have an application called Test, you would need to make a folder
called Test on your webserver. Copy the aspx files and web.config file to
that folder. Then create a bin folder inside the Test folder directory. Copy
your Test.dll to the bin folder. Make sure your create a virtual directory
in IIS to point to Test directory.

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_________________________


Owen Ott said:
Thanks, but do the support files need to be placed in a specific directory
on
the web server. If so, what are those folders. I keep getting an error
of
file not found.
Owen

Alvin Bruney said:
all you need to copy is the *.aspx files followed by the assembly which
is
found in the /bin folder and optionally the web.config file. You don't
*need
any other files. next, configure your virtual directory from iis to point
to
the application directory on disk and you should be good to go.

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_________________________


Owen Ott said:
I'm new to ASP.NET and don't have a clue how to deploy code-behind
pages.
So
here are my questions...

Can I force VB.NET to create Inline .aspx pages?

If not, can you provide details on how to deploy an application?
Everything
works on //localhost but I don't now which files to publish to the www
or
where they need to be placed in order to function.

If this is too difficult to explain in e-mail, can you recommend a book
that
THOROUGHLY explains this subject?

Thank you!
 
Back
Top