public void ClearTextValue()
    {
        channelMap = new Frame_Production_ChannelMapSelf();
        try
        {
            {
                channelMap = (Frame_Production_ChannelMapSelf)Page.LoadControl("../../Frame/Production/ChannelMapSelf.ascx");
                channelMap.ClearDropDownList();
                ConfigChipChannel(channelMap);
                channelMap.ConfigColum2Text = "";
                channelMap.ConfigColum1Text = "";
                channelMap.ConfigColum3Text = "";

                channelMap.EnableColum1Text = true;
                channelMap.EnableColum2Text = true;
                channelMap.EnableColum3Text = true;

                //ChannelMapSelfInforlist.TH8Text = mydt.Columns[8].ColumnName;

                this.ChnnelMAPSelfInfor.Controls.Add(channelMap);
            }
        }
        catch (System.Exception ex)
        {
            throw ex;
        }
    }
 public bool ConfigChipChannel(Frame_Production_ChannelMapSelf input)
 {
     try
     {
         for (int i = 0; i < chipChannelCount + 1; i++)
         {
             input.InsertColum2Text(i, new ListItem(Convert.ToString(i)));
         }
         for (int i = 0; i < moduleChannelCount + 1; i++)
         {
             input.InsertColum1Text(i, new ListItem(Convert.ToString(i)));
         }
         for (int i = 0; i < moduleChannelCount + 1; i++)
         {
             input.InsertColum3Text(i, new ListItem(Convert.ToString(i)));
         }
         return(true);
     }
     catch (System.Exception ex)
     {
         throw ex;
     }
 }