what is difference between buil and delpoy?

G

Guest

1. what is difference between buil and delpoy?

2. If I am finished with a web app lets say. how do I compile it and what
type of a file will it be? .dll, aspx,...

3. how do I bundle an application that is web based. Do I put an aspx file
in the bin directory or the IIS server the conection login in the aspx file
modify the sql server in same domain but on different server. Or is the
asp.net code imbedded in the html file?
need help wrapping my mind round what type of file go where to complete a
web app with IIS server, sql server on a different machine, and IE as client
app using SSL authentification.
thanks!!!!!
 
C

Cor Ligthert

Adam,
1. what is difference between buil and delpoy?
Build is making a program (in your case a dll) from your code. Creading a
deployment project is collecting all parts that are needed for the user, so
that you can transport it to his computer. (For a website from the
development computer to the production server).
2. If I am finished with a web app lets say. how do I compile it and what
type of a file will it be? .dll, aspx,...

This can have different answers because in AspNet there are more
possibilities. You can see that in top of your ASPX page.

When it is like this
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="dbHelp.aspx.vb"
Inherits="Kens.WebForm1" %>

Than it tells that the language is VB, and that the part dbHelp.aspx.vb in
the DLL "Kens.Webform1.DLL" is used. You do than only need that DLL in your
Bin directory on the webserver and the aspx page in the directory where the
user is pointing to. Not the individual vb or cs code.
3. how do I bundle an application that is web based. Do I put an aspx file
in the bin directory or the IIS server the conection login in the aspx
file
modify the sql server in same domain but on different server. Or is the
asp.net code imbedded in the html file?
need help wrapping my mind round what type of file go where to complete a
web app with IIS server, sql server on a different machine, and IE as
client
app using SSL authentification.
thanks!!!!!
--
I hope that I have answered this with my previous answers.

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top