HighTechTalks DotNet Forums  

Deploy ASP.NET without the dll?

Dotnet Academic General Discussions microsoft.public.dotnet.academic


Discuss Deploy ASP.NET without the dll? in the Dotnet Academic General Discussions forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
DotNetJunkies User
 
Posts: n/a

Default Deploy ASP.NET without the dll? - 08-05-2004 , 02:32 PM






That may sound like a stupid question, but let me explain what I mean.

Let's say we have ASP.NET application "MyApp".

The directory structure looks like this:
MyApp\foo
MyApp\bar
MyApp\bin

Programmer A makes changes to pages in MyApp\foo.
Programmer B makes changes to pages in MyApp\bar.

Neither one has the other's code changes so we he compiles (builds) his copy of the project, the changes from the other person are not in the dll. Example:

Programmer A uploads his new files, including MyApp\bin\MyApp.dll.

Then Programmer B does the same, overlaying Programmer A's dll. Programmer A's changes get blown away.

That is the problem my buddy and I are trying to solve. How can we work independently on separate pages without needing to send our changes to each other for the "build" process?

---
Posted using Wimdows.net NntpNews Component -

Post Made from http://www.DotNetJunkies.com/newsgroups Our newsgroup engine supports Post Alerts, Ratings, and Searching.

Reply With Quote
  #2  
Old   
Marco Barzaghi
 
Posts: n/a

Default Re: Deploy ASP.NET without the dll? - 08-07-2004 , 08:57 AM






Quote:
Then Programmer B does the same, overlaying Programmer A's dll. Programmer A's changes get blown
away.

You can use "src" directive of @page. Look at
http://msdn.microsoft.com/library/de.../cpconPage.asp. Using
"src" you must upload the source of codebehind too.

--
Src Specifies the source file name of the code-behind class to dynamically compile when the page is
requested. You can choose to include programming logic for your page either in a code-behind class
or in a code declaration block in the .aspx file.

Note RAD designers, such as Visual Studio .NET, do not use this attribute. Instead, they
precompile code-behind classes and then use the Inherits attribute.
--

HTH M.rkino

--
Marco Barzaghi - [MVP - MCP]
http://mvp.support.microsoft.com - http://italy.mvps.org
UGIDotNet - User Group Italiano .NET, http://www.ugidotnet.org
Read my WebLog: http://www.ugidotnet.org/436.blog




Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.