- March 20, 2008
Most people on installing .NET 3.5 on the server "expect" an entry for v3.5 under the ASP.NET version Tab in IIS manager. And not finding that entry start panicking. If you have been one of those read on. The more tech savvy folks try to run aspnet_regiis -i from the v3.5 framework folder... but even that is missing :)
That brings us to the question
What exactly is ASP.NET 3.5
Take a look at the v3.5 framework folder you will not find most of the files needed for ASP.NET to run like...
http://blogs.msdn.com/vijaysk/archive/2008/03/20/running-asp-net-3-5-on-iis.aspx
- March 18, 2008
The ReferenceEquals method is usually used to determine if two objects are the same instance. But you need to be a bit cautious when you use it with Value Types. Consider the following code.
static void Main(string args)
int valueVar = 15;
if (Object.ReferenceEquals(valueVar, valueVar))
Console.WriteLine("Reference Equal");
else
Console.WriteLine("Reference Not Equal");
Console.ReadLine();
Will always print "Reference Not Equal"
This code will always print...
http://blogs.msdn.com/vijaysk/archive/2008/03/19/object-referenceequals-valuevar-valuevar-...
- March 8, 2008
Everyone who tuned in to MIX '08 should be knowing that the BETA version of Internet Explorer 8 is now available for public download. Internet Explorer 8 has a lot of features to look out for
- Standards Compliant (It passes the Acid 2 Browser Test)
- Choice of layout engine
- Domain Highlighting
- IE 8 Developer Tools
- Activities
- WebSlices to mention a few.
Personally I am a big fan of Internet Explorer 8 Activities as it finally provides a simple non-geeky way to extend the...
http://blogs.msdn.com/vijaysk/archive/2008/03/08/internet-explorer-8-activity-provider-sea...
|
|