private void ReadXml()
{
this.pan_myLinks.Controls.Clear();
this.pan_myLinks.Controls.Clear();
DataSet ds=new DataSet();
ds.ReadXml(this.Server.MapPath("myoutstanding.xml"));
for(int i=0; i<ds.Tables[0].Rows.Count;i++)
{
//if(ds.Tables[0].Rows[i]["modular"].ToString()=="mylinks")
this.pan_myLinks.Controls.Add(new LiteralControl( ds.Tables[0].Rows[i]["HtmlCode"].ToString() ));
//else if(ds.Tables[0].Rows[i]["modular"].ToString()=="notice")
//this.pan_myLinks.Controls.Add(new LiteralControl(ds.Tables[0].Rows[i]["HtmlCode"].ToString()));
}