Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Elusive DataSet
Message
 
 
To
01/05/2008 11:40:09
General information
Forum:
ASP.NET
Category:
Other
Title:
Environment versions
OS:
Windows XP
Database:
MS SQL Server
Miscellaneous
Thread ID:
01314012
Message ID:
01315406
Views:
13
Ok, I was wrong about Postbacks. In IE7 pages refresh without delays, very nice. Same page in FireFox refreshes every time. I guess my problem was that in VS2005 my default browser was set to FireFox and in VS2008 it's IE.



>>>I do not know, sorry
>>>
>>>I downloaded it from here http://www.microsoft.com/downloads/details.aspx?FamilyID=333325fd-ae52-4e35-b531-508d977d32a6&DisplayLang=en
>>>
>>>http://download.microsoft.com/download/6/0/f/60fc5854-3cb8-4892-b6db-bd4f42510f28/dotnetfx35.exe
>>>
>>>
>>>
>>>When vs2008 already finds 3.5 installed, it skips the 3.5 installation step
>>
>>So far I like VS2008 much better. It seems to me that all the pages work much faster and I see less Postbacks when I used to see.
>
>Hey,
>
>That's nice.
>
>Another bit you'll probably like is this
>
>You do not have to define the type twice.
>You can use var to define a new variable
>It figures out what its type will be. Not that difficult, since in vs2005, when you typed new it had 'guessed' it would be a StringBuilder (see example)
>
>
>// example
>// in vs2005
>   int i = 123;
>   StringBuilder sb = new StringBuilder(1024);
>
>// in vs 2008
>   var i = 123;
>   var sb = new StringBuilder(1024);
>
If it's not broken, fix it until it is.


My Blog
Previous
Reply
Map
View

Click here to load this message in the networking platform