|
|
|
start date: Thu, 16 Aug 2007 04:08:35 -0000,
posted on: microsoft.public.dotnet.framework.aspnet
back
| Thread Index |
|
1
Sir Psycho
|
|
2
Cowboy \(Gregory A. Beamer\) oSpamM
|
|
3
Sir Psycho
|
|
4
Ladislav Mrnka
|
|
5
George Ter-Saakov
|
|
6
George Ter-Saakov
|
|
7
Sir Psycho
|
ASP.NET dynamic compilation?
Hi,
Does ASP.NET have the same feature of PHP as in can I reupload an ASPX
file and it becomes 'live' with all the new changes?
Do I also need to reupload the site DLL each time I make a code change?
Date:Thu, 16 Aug 2007 04:08:35 -0000
Author:
|
Re: ASP.NET dynamic compilation?
"Sir Psycho" wrote in message
news:1187237315.543742.190970@i13g2000prf.googlegroups.com...
> Hi,
>
> Does ASP.NET have the same feature of PHP as in can I reupload an ASPX
> file and it becomes 'live' with all the new changes?
Yes, depending on how you publish.
> Do I also need to reupload the site DLL each time I make a code change?
No, if you use the model that I said YES on earlier
--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA
*************************************************
| Think outside the box! |
*************************************************
Date:Wed, 15 Aug 2007 23:12:38 -0500
Author:
|
Re: ASP.NET dynamic compilation?
and what model is that? :)
On Aug 16, 6:12 am, "Cowboy \(Gregory A. Beamer\)"
<NoSpamMgbwo...@comcast.netNoSpamM> wrote:
> "Sir Psycho" wrote in message
>
> news:1187237315.543742.190970@i13g2000prf.googlegroups.com...
>
> > Hi,
>
> > Does ASP.NET have the same feature of PHP as in can I reupload an ASPX
> > file and it becomes 'live' with all the new changes?
>
> Yes, depending on how you publish.
>
> > Do I also need to reupload the site DLL each time I make a code change?
>
> No, if you use the model that I said YES on earlier
>
> --
> Gregory A. Beamer
> MVP, MCP: +I, SE, SD, DBA
>
> *************************************************
> | Think outside the box! |
> *************************************************
Date:Thu, 16 Aug 2007 04:28:18 -0000
Author:
|
Re: ASP.NET dynamic compilation?
Yes and no
You can reupload up to 15 times aspx page (configurable) then application
restarts (meaning you will loose all Sessions)
I believe if you reupload CS or VB files application restarts immediately.
So do all your coding in ASPX file.
George.
"Sir Psycho" wrote in message
news:1187237315.543742.190970@i13g2000prf.googlegroups.com...
> Hi,
>
> Does ASP.NET have the same feature of PHP as in can I reupload an ASPX
> file and it becomes 'live' with all the new changes?
>
> Do I also need to reupload the site DLL each time I make a code change?
>
Date:Thu, 16 Aug 2007 09:00:39 -0400
Author:
|
Re: ASP.NET dynamic compilation?
Hi,
how do you deploy your web application? Are you using simple XCopy or
precompilation? If you are using XCopy you can do any change to as*x files
and corresponding code behind files and just upload them to server.
Precompilation allows you to compile whole application to dlls so if you want
to make any change you have to precompile and deploy whole application again.
There is also mixed mode where code is precompiled and as*x files are still
updatable - you can control this by parameter for aspnet precompiler or by
check box in Visual Studio publish web application functionality.
Regards,
Ladislav
"Sir Psycho" wrote:
> and what model is that? :)
>
> On Aug 16, 6:12 am, "Cowboy \(Gregory A. Beamer\)"
> <NoSpamMgbwo...@comcast.netNoSpamM> wrote:
> > "Sir Psycho" wrote in message
> >
> > news:1187237315.543742.190970@i13g2000prf.googlegroups.com...
> >
> > > Hi,
> >
> > > Does ASP.NET have the same feature of PHP as in can I reupload an ASPX
> > > file and it becomes 'live' with all the new changes?
> >
> > Yes, depending on how you publish.
> >
> > > Do I also need to reupload the site DLL each time I make a code change?
> >
> > No, if you use the model that I said YES on earlier
> >
> > --
> > Gregory A. Beamer
> > MVP, MCP: +I, SE, SD, DBA
> >
> > *************************************************
> > | Think outside the box! |
> > *************************************************
>
>
>
>
>
Date:Thu, 16 Aug 2007 18:09:29 -0700
Author:
|
Re: ASP.NET dynamic compilation?
I guess I'd like to upload bug fixes to my site without kicking
everyone off their sessions which is something php allows you to do.
Isnt doing all coding in ASPX really bad? I thought having code behind
in separate files helps with separation
can someone also give me a resource on how to configure visual studio/
IIS to allow me to upload changes without restarting the web app
thank you
On Aug 16, 3:00 pm, "George Ter-Saakov" wrote:
> Yes and no
> You can reupload up to 15 times aspx page (configurable) then application
> restarts (meaning you will loose all Sessions)
> I believe if you reupload CS or VB files application restarts immediately.
>
> So do all your coding in ASPX file.
>
> George.
>
> "Sir Psycho" wrote in message
>
> news:1187237315.543742.190970@i13g2000prf.googlegroups.com...
>
> > Hi,
>
> > Does ASP.NET have the same feature of PHP as in can I reupload an ASPX
> > file and it becomes 'live' with all the new changes?
>
> > Do I also need to reupload the site DLL each time I make a code change?
Date:Tue, 21 Aug 2007 01:22:27 -0000
Author:
|
Re: ASP.NET dynamic compilation?
Take a look at DotNetNuke You can use it or use same idea.
It's a content management system when content is in DB. Then application
will not restart.
George.
"Sir Psycho" wrote in message
news:1187659347.604653.148330@e9g2000prf.googlegroups.com...
>I guess I'd like to upload bug fixes to my site without kicking
> everyone off their sessions which is something php allows you to do.
>
> Isnt doing all coding in ASPX really bad? I thought having code behind
> in separate files helps with separation
>
> can someone also give me a resource on how to configure visual studio/
> IIS to allow me to upload changes without restarting the web app
>
> thank you
>
> On Aug 16, 3:00 pm, "George Ter-Saakov" wrote:
>> Yes and no
>> You can reupload up to 15 times aspx page (configurable) then application
>> restarts (meaning you will loose all Sessions)
>> I believe if you reupload CS or VB files application restarts
>> immediately.
>>
>> So do all your coding in ASPX file.
>>
>> George.
>>
>> "Sir Psycho" wrote in message
>>
>> news:1187237315.543742.190970@i13g2000prf.googlegroups.com...
>>
>> > Hi,
>>
>> > Does ASP.NET have the same feature of PHP as in can I reupload an ASPX
>> > file and it becomes 'live' with all the new changes?
>>
>> > Do I also need to reupload the site DLL each time I make a code change?
>
>
Date:Tue, 21 Aug 2007 10:26:32 -0400
Author:
|
|
|