|
-
Sep 5th, 2004, 11:34 AM
#1
Thread Starter
PowerPoster
Looking for that free Vis Stud download link
Hi all,
A few weeks back (maybe less) someone posted a link to msdn where they had a free version of visual studio .NET for testing/learning purposes.
That would be awesome if someone could point me to that link. I looked an dlooked but I cant find it 
Thanks!
-
Sep 5th, 2004, 11:38 AM
#2
http://lab.msdn.microsoft.com/express/
VB.NET is under the pic of the guy who looks like he got a haircut at his local butcher's.
-
Sep 5th, 2004, 11:45 AM
#3
Thread Starter
PowerPoster
Was that it? I didnt think it was a beta... hmm.
I am looking to make ASP.NET (with VB.NET mostly) pages with a new book I have "Programming ASP.NET" from O'Reilly.
I wanted to make the examples - I learn better that way.
-
Sep 5th, 2004, 06:59 PM
#4
Tips:
- Google is your friend! Search before posting!
- Name your thread appropriately... "I Need Help" doesn't cut it!
- Always post your code!!!! We can't read your mind!!! (well, at least most of us!)
- Allways Include the Name and Line of the Exception (if one is occuring!)
- If it is relevant state the version of Visual Studio/.Net Framwork you are using (2002/2003/2005)
If you think I was helpful, rate my post  IRC Contact: Rizon/xous ChakraNET/xous Freenode/xous
-
Sep 5th, 2004, 08:14 PM
#5
Frenzied Member
Bear in mind that WebMatrix doesn't compile code-behind. You have to compile it yourself using the command line tools.
-
Sep 5th, 2004, 08:14 PM
#6
You don't exactly need the Visual Studio IDE. If you have FrontPage or anything really for that matter, you can use write it straight into your web page.
I use Microsoft Visual Basic 2005. (Therefore, most code samples I provide will be based around the .NET Framework v2.0, unless otherwise specified)
-
Sep 7th, 2004, 01:23 PM
#7
Thread Starter
PowerPoster
Originally posted by Ideas Man
You don't exactly need the Visual Studio IDE. If you have FrontPage or anything really for that matter, you can use write it straight into your web page.
I thought .ASPX files were pre-complied on the server, implying that they wont work as just a text file like the classic ASP 3.0 pages could be. I thought they had to be compiled somehow for them to work...
-
Sep 7th, 2004, 01:26 PM
#8
They are compiled even if you are not using code behind pages.
If you change the code in the file it is compiled on the first request and is cashed. (if i remember right)
Tips:
- Google is your friend! Search before posting!
- Name your thread appropriately... "I Need Help" doesn't cut it!
- Always post your code!!!! We can't read your mind!!! (well, at least most of us!)
- Allways Include the Name and Line of the Exception (if one is occuring!)
- If it is relevant state the version of Visual Studio/.Net Framwork you are using (2002/2003/2005)
If you think I was helpful, rate my post  IRC Contact: Rizon/xous ChakraNET/xous Freenode/xous
-
Sep 7th, 2004, 02:25 PM
#9
Originally posted by Dave Sell
I thought .ASPX files were pre-complied on the server, implying that they wont work as just a text file like the classic ASP 3.0 pages could be. I thought they had to be compiled somehow for them to work...
They are compiled - the first time the page is run. The resulting IL code is then put into cache. So, even still you can build ASP.NET in notepad, and upload it to the server and it will run.
TG
-
Sep 7th, 2004, 02:27 PM
#10
Thread Starter
PowerPoster
What happens to the original file? Can it be re-edited in notepad? I guess you can tell I am an ASP.NET noobie LOL!
-
Sep 7th, 2004, 04:13 PM
#11
Originally posted by Dave Sell
What happens to the original file? Can it be re-edited in notepad? I guess you can tell I am an ASP.NET noobie LOL!
Yes it can. When a page is requested, ASP.Net checks the cache, if the file is there, it checks the compile times (a datetime stamp when it was compiled) to the file's last edit time. If there's no diff, the pre-compiled cached version is used. If the source file is newer, the cached version is thrown away, and the new source gets re-compiled and stored in the cache.
TG
-
Sep 7th, 2004, 05:51 PM
#12
Thread Starter
PowerPoster
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|