Thursday, August 28, 2008

Collection Class

http://msdn.microsoft.com/en-us/library/6tc79sx1(VS.80).aspx

What is n-Tier Architecture?

http://www.developerfusion.co.uk/show/3058/2/

Tuesday, August 26, 2008

DataPager Paging Issue

just do only

1. Add a OnPreRender to the DataPager

2. In the OnPreRender, Bind the listview again to the dataset

as my Function name is

private void getDetail()
{
clsListView obj = new clsListView();
DataTable dt = obj.getDetails();
LV_Getail.DataSource = dt;
LV_Getail.DataBind();
}


protected void Pager_PreRender(object sender, EventArgs e)
{
getDetail();
}


protected void Page_Load(object sender, EventArgs e)
{
if(!IsPostBack)
getDetail();

}