المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Problem with LinkLabel



C# Programming
04-01-2009, 02:51 PM
Hello there,

I am working on a small Windows form, where I've to implelent the LinkLabel control to link my form with www.microsoft.com. Below is the code:

private void linkLabel1_LinkClicked(object sender,LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start(www.microsoft.com);
}

But when I debug the code, I get an error which is like this "The name www does not exist in the current context".

Can anyone please tell me, whats the correct code for the LinkLabel event handler, such that my form connects to microsoft.com.

Your help would be appreciated! Thanx.