Ask a Question related to ASP.NET Building Controls, Design and Development.
-
parulrgupta@gmail.com #1
problem whil adding user control dynamically multiple times
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.VarCh ar,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.GetConnectio nString(),CommandType.StoredProcedure,"spInsertEmp loyeeExperience",ParamCompany,ParamLocation,ParamP eriod,ParamProject,ParamDesc,ParamTech,ParamResume ID);
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();
}
parulrgupta@gmail.com Guest
-
Using the same User Control multiple times on one page
How can I reuse a User Control multiple times on a single page? I have one created that pulls and hyperlinks the most recent news items from the... -
Dynamically Adding User Control with Child User Control
I have a user control that has a child user control. If I drag this onto the page, it appears and functions normally. If I attempt to add the... -
Dynamically adding a user control to aspx page
I am using an aspx page called USProfile.aspx. It has a placeholder control. A user control called USData is added to placeholder control... -
Adding dynamically user control (ASCX) into asp.net page and handling OnClick event
Hi, I've been reading a lot's of Q&A on user controls but none seem to answer my question. Here it is. I need to add dynamically a user control,... -
Page Load fired 3 times Web user control is embedded in a custom control
Hi, I have built a custom control that build a table with 3 cells in it. The custom control is designed to add all child controls to cell#2,... -
Alessandro Zifiglio #2
Re: problem whil adding user control dynamically multiple times
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
<parulrgupta@gmail.com> ha scritto nel messaggio
news:1145337236.319946.6170@i39g2000cwa.googlegrou ps.com...>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.VarCh ar,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.GetConnectio nString(),CommandType.StoredProcedure,"spInsertEmp loyeeExperience",ParamCompany,ParamLocation,ParamP eriod,ParamProject,ParamDesc,ParamTech,ParamResume ID);
>
> 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 Guest



Reply With Quote

