yes i have used this code and when click on submit button all of the data were shown on the label
i have used this piece of code
<asp:Label ID="Label1" runat="server" Text="Promo Start Date"></asp:Label>
<asp:TextBox ID="txtadd1" runat="server" ></asp:TextBox>
<asp:Label ID="Label2" runat="server" Text="Promo End Date"></asp:Label>
<asp:TextBox ID="txtadd2" runat="server"></asp:TextBox>
<asp:Label ID="Label3" runat="server" Text="Execution Date"></asp:Label>
<asp:TextBox ID="txtadd3" runat="server"></asp:TextBox>
<asp:Label ID="Label4" runat="server" Text="Expiry Date"></asp:Label>
<asp:TextBox ID="txtadd4" runat="server"></asp:TextBox>
protected void Button1_Click1(object sender, EventArgs e) {
Label1.Text = txtadd1.Text; Label2.Text = txtadd2.Text;
Label3.Text = txtadd3.Text; Label4.Text = txtadd4.Text; }
basically it was form with different labels and text boxes .when i click on submit button then all of the data were appearing on the form
here is the scanerio.
Start Date .....TextBox........
End Date .......TextBox........
Submit Button
When i enter data
Start Date 1-1-2010
End Date 2-2-2012
and press submit button then the data will appear as
1-1-2010 TextBox
2-2-2012 TextBox
the data will appear on the same form but now in the below portion after the submit button.
the data will be appear as
Start Date ...............
End Date..................
Submit Button
when i press button then the data will be appearing after submit button means below the form
any method to solve this query