473,385 Members | 1,356 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Build with every change to the code?!?!?

I am developing ASP.NET with VB.NET using VisualStudio.Net, and every little line I change, I have to build the application. Why is that? Is it by design? When I first started with the development, I never had to Build it, now it is all of the time!!

Thanks!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
Nov 19 '05 #1
4 1155
Hi David,
Whenever you are writing code in code behind page (.aspx.vb/.aspx.cs), you
must build/re-build the application, and if you are writing any code in your
desing page (.aspx), then you dont need to build/re-build your application.
(This is for the version 1.1/VS.NET 2003. I have no idea about VS.NET 2005. I
guess in 2005, it is just enough if you save the code without building the
code.)

Whenever you build your application a DLL file is created in /bin folder. So
when you request a page from browser, it gets the code from this DLL. Hence
forth, whenever you change your code, you must build/re-build your entire
application.

Hope this make sense.

Thanks & regards,
K.V.Ravindra Kumar

"David Lozzi" wrote:
I am developing ASP.NET with VB.NET using VisualStudio.Net, and every little line I change, I have to build the application. Why is that? Is it by design? When I first started with the development, I never had to Build it, now it is all of the time!!

Thanks!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts

Nov 19 '05 #2
Not sure what you mean by "never had to build it". If you edit a text file, do you not have to save it for it to persist. I am curious as to had behavior you expect when you modify code files since building is the way the binaries are created.

"David Lozzi" <dlozzi(remove-this)@delphi-ts.com> wrote in message news:u1**************@tk2msftngp13.phx.gbl...
I am developing ASP.NET with VB.NET using VisualStudio.Net, and every little line I change, I have to build the application. Why is that? Is it by design? When I first started with the development, I never had to Build it, now it is all of the time!!

Thanks!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
Nov 19 '05 #3
CMA
hi,

I think this is because you don't have a good idea of .NET. try to read more
articles from MSDN like asp.net architecture.

this is somewhat different from ASP
the application will be compiled before start. and if you are using code
behind files.

regards,
CMA
"David Lozzi" <dlozzi(remove-this)@delphi-ts.com> wrote in message
news:u1**************@tk2msftngp13.phx.gbl...
I am developing ASP.NET with VB.NET using VisualStudio.Net, and every little
line I change, I have to build the application. Why is that? Is it by
design? When I first started with the development, I never had to Build it,
now it is all of the time!!

Thanks!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com

Nov 19 '05 #4
Oh, I see from the both posts what you mean.

"Peter Rilling" <pe***@nospam.rilling.net> wrote in message news:u4**************@tk2msftngp13.phx.gbl...
Not sure what you mean by "never had to build it". If you edit a text file, do you not have to save it for it to persist. I am curious as to had behavior you expect when you modify code files since building is the way the binaries are created.

"David Lozzi" <dlozzi(remove-this)@delphi-ts.com> wrote in message news:u1**************@tk2msftngp13.phx.gbl...
I am developing ASP.NET with VB.NET using VisualStudio.Net, and every little line I change, I have to build the application. Why is that? Is it by design? When I first started with the development, I never had to Build it, now it is all of the time!!

Thanks!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
Nov 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Kelly | last post by:
If you are a programmer, you may have the problem of your computer never being up-to-date. You know as well as I do that if you don't spend more and more money every couple of months your computer...
1
by: shea martin | last post by:
Is there a way to keep track of a build number within a program? Essentially incrementing a #define everytime the program is compiled (at link time would be even better, though tougher to...
15
by: cody | last post by:
We have a huge project, the solutuion spans 50 projects growing. Everytime I want to start the project I have to wait nearly over 1 minute for the compiler to complete building. This is...
12
by: Stuart MacMartin | last post by:
Looking for tricks for speeding up builds... We have an application with about 970 of our own classes of various sizes plus a fair number of routines. Over the past year the compile/link time...
12
by: Sitar | last post by:
Hi, I would like to include the build time in my application. It's for my ? / About ... menu. It's annoying to change the label.Text property for every release. Is it possible to do so? ...
0
by: Michi Henning | last post by:
Hi, I am generating VB source code with a compiler that processes interface descriptions. I'd like to add something to the VB.NET project for the a program that automatically calls the compiler...
4
by: Steve Amey | last post by:
Hi all I have a Form that is inherited from a main form. On the child form I am putting 2 panels directly on the form, not in any other controls. If I build the project, 1 of the panels decides...
8
by: white lightning | last post by:
I've been thinking lately about whether to use opensource CMS such as Joomla or to build something from scratch. I am good with PHP/ MySQL but only little bit familiar with Joomla. I want to...
5
by: jayapal | last post by:
Hi all, We have large code on which we are solving the bugs. For every bug we change the code part either add or delete some of the code part. More is adding the code part and very less is...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.