Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / Building Controls / April 2006

Tip: Looking for answers? Try searching our database.

problem whil adding user control dynamically multiple times

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
parulrgupta@gmail.com - 18 Apr 2006 06:13 GMT
I have two buttons add and save on my aspx page

as and when i click on save button ,i want to load user control on form
it works fine but when i click on add button then that previously
loadded user contol goes away

i dont kow why this happnes ...

if anybody have any idea abt it then plz help me

code is

protected void btnProfessionalAdd_Click(object sender,
ImageClickEventArgs e)
   {
       txtProject.ReadOnly = false;
       txtLocation.ReadOnly = false;
       txtCompany.ReadOnly = false;
       txtEnvironment.ReadOnly = false;
       txtDescription.ReadOnly = false;
       txtDuration.ReadOnly = false;
       //LoadNewControl();

   }

   protected void btnProfessionalSave_Click(object sender,
ImageClickEventArgs e)
   {
       //DataSet DS;
       SqlParameter ParamCompany=new
SqlParameter("@Company",SqlDbType.VarChar,50);
       ParamCompany.Value=txtCompany.Text;
       SqlParameter ParamLocation=new
SqlParameter("@Location",SqlDbType.VarChar,50);
       ParamLocation.Value=txtLocation.Text;
       SqlParameter ParamPeriod=new
SqlParameter("@Period",SqlDbType.VarChar,20);
       ParamPeriod.Value=txtDuration.Text;
       SqlParameter ParamProject=new
SqlParameter("@Project",SqlDbType.VarChar,50);
       ParamProject.Value=txtProject.Text;
       SqlParameter ParamDesc=new
SqlParameter("@ProjectDescription",SqlDbType.VarChar,5000);
       ParamDesc.Value=txtDescription.Text;
       SqlParameter ParamTech=new
SqlParameter("@Technology",SqlDbType.VarChar,1000);
       ParamTech.Value=txtEnvironment.Text;
       SqlParameter ParamResumeID=new
SqlParameter("@ResumeId",SqlDbType.VarChar,50);
       ParamResumeID.Value = "ritesh_solanki@yahoo.com";
       //Session["ERResumeID"].ToString();

SqlHelper.ExecuteNonQuery(CommonClass.GetConnectionString(),CommandType.StoredProcedure,"spInsertEmployeeExperience",ParamCompany,ParamLocation,ParamPeriod,ParamProject,ParamDesc,ParamTech,ParamResumeID);

       ClearFields();
       LoadNewControl();

   }
   protected void ClearFields()
   {
       txtProject.Text = "";
       txtLocation.Text= "";
       txtCompany.Text = "";
       txtEnvironment.Text = "";
       txtDescription.Text = "";
       txtDuration.Text = "";
       txtProject.ReadOnly = true;
       txtLocation.ReadOnly = true;
       txtCompany.ReadOnly = true;
       txtEnvironment.ReadOnly = true;
       txtDescription.ReadOnly = true;
       txtDuration.ReadOnly = true;
   }
   protected void LoadNewControl()
   {
       Control myCnt;
       int cnt=0;
       int i;
       cnt++;
       if (hiddnCnt.Value == "")
       {
           cnt = cnt;
       }
       else
       {
            cnt = Convert.ToInt32(hiddnCnt.Value) +1;
           //cnt=cnt+1;
       }
       //cntName As New Control()
       //cntName.ID = "PlaceHolder" & cnt
       //form1.Controls.Add(cntName)
       for(i=0;i<=cnt-1;i++)
       {
           myCnt = LoadControl("Project.ascx");
           myCnt.ID = "Control" +i;
//            Panel1.Controls.Add(myCnt);
      form1.Controls.Add(myCnt);
     
       }
       hiddnCnt.Value = cnt.ToString();

   }
Alessandro Zifiglio - 18 Apr 2006 14:34 GMT
hi, keep looking in old posts within this group. It has come up on various
occassions and you will find some very good answers. Basically as a rule of
thumb, keep in mind that any controls you add to the webform dynamically
need to be reloaded manually by yourself(the same way it was loaded the last
time) after a postback scenario.

Have a good day,
Alessandro Zifiglio
>I have two buttons add and save on my aspx page
>
[quoted text clipped - 98 lines]
>
>    }

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.