Monday, July 20, 2009

Silverlight 2.0 Hosting

Client Side:
Silverlight plug-in is installed on the Web client machine
Supported Platforms:
Operating System
  • Windows Vista
  • Windows XP SP2
  • Windows 2000 Windows Server 2003
  • Macintosh OS 10.4.8+ (Intel Based)

Browser

  • Internet Explorer6, 7+
  • Firefox 1.5+ Google Chrome
  • Safari
  • Firefox 1.5+

Server Side:

  • Slight configuration modifications may be necessary on the Web server including Microsoft Internet Information Server (IIS), such as MIME types, so that XAML and XAP files are associated with Silverlight and downloaded correctly to the Web client machine when requested
  • .Net Framework 3.5

Sunday, May 24, 2009

Set Link for Email Sending using javascript

javascript:location.href='mailto:?SUBJECT='+document.title+'&BODY='+escape(location.href);

Find time Elapsed In .net without using Timer Control

System.Diagnostics.Stopwatch calcElap= new System.Diagnostics.Stopwatch();
calcElap.Start();

//do my stuff
...

calcElap.Stop();
Response.Write("Time Elapse: " + calcElap.Elapsed.ToString());

Categories