Error occour because of hidden control.
Solution:
Change the linkbuttons that were not hidden to cause validation to false.
Property :(CauseValidation=False)
Wednesday, February 10, 2010
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;
}
Monday, February 8, 2010
Subscribe to:
Posts (Atom)