0 comments Friday, May 11, 2007

Hi All,

Get an early look at Visual Studio code name "Orcas"The next version of Visual Studio, Microsoft® Visual Studio® code name “Orcas”, will provide an industry-leading developer experience for Windows Vista, the 2007 Microsoft Office system, and the Web. In addition, it will continue in the Microsoft tradition of development language innovation. To enable early feedback, this page provides links to Community Technology Preview (CTP) and Beta releases of Visual Studio code name “Orcas”, and for technologies that we plan to include in it. As previews of additional technologies become available, we will make them available from this page.

http://msdn2.microsoft.com/en-us/vstudio/aa700831.aspx

Regards
Pankaj

0 comments

HI All,
Microsoft .NET Framework 3.5 – Beta 1
The Microsoft .NET Framework 3.5 Beta 1 is a preview release of the latest version of the .NET Framework. Many ISV’s, enterprises and Microsoft product teams are successfully building on the new features Windows Workflow Foundation (WF), Windows Communication Foundation (WCF), Windows Presentation Foundation (WPF) and Windows CardSpace in the .NET Framework 3.0. Microsoft plans to continue to invest in the .NET Framework developer platform and in support of existing users the .NET Framework 3.5 has a minimal number of breaking changes.

Download from below link


Microsoft .NET Framework 3.5 - Beta 1

Rgards
Pankaj

0 comments Tuesday, May 8, 2007

Hi ,
Some times we require to clear the control status at one click for our web application. Using javascript its very easy.you can clear the control status

for example(TextBox/Input)

function ClearTextBoxExample()
{
var loTextBox = document.forms[0].elements;
for(var i=0;i
{
if(loTextBox[i]=="input")
{
loTextBox[i].value = "";
}
}
}

Regards
Pankaj

0 comments Wednesday, April 25, 2007

Hi,

Find out about the general-purpose query facilities added to the .NET Framework that apply to all sources of information, not just relational or XML data. This facility is called .NET Language Integrated Query (LINQ).

example

using System;
using System.Query;
using System.Collections.Generic;
class app {
static void Main() {
string[] names = { "Burke", "Connor", "Frank",
"Everett", "Albert", "George",
"Harris", "David" };
IEnumerable expr = from s in names
where s.Length == 5
orderby s
select s.ToUpper();
foreach (string item in expr)
Console.WriteLine(item);
}
}

0 comments

Hi,

Microsoft released Beta 1 of its upcoming IDE and interim framework late last week. This next version of Visual Studio, called "Orcas" for now, will offer developers as many as 200 new features, according to Microsoft.

http://www.ftponline.com/channels/net/2007_04/krichards/

Regards
Pankaj

0 comments Thursday, March 22, 2007

Hi,
Dynamically rewrite Microsoft Intermediate Language code on the fly? How it sounds? Interesting isn't it? Yes! using the Profiling API of the CLR you can do that. Unlike approaches based on Reflection.Emit, this scheme works with the existing assemblies and doesn't require the creation of proxy or dynamic assemblies. The need for IL code rewriting emerges when you want to make your changes transparent to the client and preserve the identity of classes. This technique can be used for creation of interceptors, pre- and post-processing method calls, and code instrumentation and verification.

Please refer this nice article by Aleksandr Mikunov

http://msdn.microsoft.com/msdnmag/issues/03/09/NETProfilingAPI/default.aspx

Regards
Pankaj

0 comments Friday, March 9, 2007

Hi Guys,
Well vista is already launched and most of them wanted to know about its new feature so below is the link which will gives you the detail of Windows Vista feature.

http://www.microsoft.com/windows/products/windowsvista/features/default.mspx

Regards
Pankaj