Windows Phone 7.1 Development.
http://msdn.microsoft.com/en-us/library/ff431744(VS.92).aspx
Monday, December 31, 2012
Monday, February 21, 2011
HTML5 DataList not working in Internet Explorer 9
For strange reasons HTML5's datalist feature is not working in IE9. It is however working fine with Mozilla Firefox
Saturday, January 15, 2011
How to Change Controls to Absolute Position in Visual Studio
Absolute Positioning of Web Controls in ASP.NET using Visual Studio
Here is the way to Set the Absolute positioning in Visual Studio.
Here is the way to Set the Absolute positioning in Visual Studio.
Sunday, September 12, 2010
How to assign Master Page to a Content Page
There are many ways to assign a Master page to a Content page.
1. Using Page Directive
2. Using Web Config
This will set the Master file for all the Pages in the Web application
3. Programmatically from Content page
protected void Page_PreInit(object sender, EventArgs e)
{
Page.MasterPageFile = "~/SiteExample.Master";
}
1. Using Page Directive
2. Using Web Config
This will set the Master file for all the Pages in the Web application
3. Programmatically from Content page
protected void Page_PreInit(object sender, EventArgs e)
{
Page.MasterPageFile = "~/SiteExample.Master";
}
Friday, April 2, 2010
Subscribe to:
Posts (Atom)