Wednesday, February 10, 2010

WebForm_DoPostBackWithOptions vs __doPostback: Link button not working

Error occour because of hidden control.

Solution:
Change the linkbuttons that were not hidden to cause validation to false.
Property :(CauseValidation=False)

Tuesday, February 9, 2010

Get current page name in ASP.Net

public string GetCurrentPageName() 
{
string sPath = System.Web.HttpContext.Current.Request.Url.AbsolutePath;
System.IO.FileInfo oInfo = new System.IO.FileInfo(sPath);
string sRet = oInfo.Name;
return sRet;
}