how to merge two the checkbox value to textbox asp.netHPhothorasman panjaitan11yAsked Feb 21, 2015, 11:16 AM1.8k.NET how to merge two the checkbox value to textbox asp.net
Joginder Banger11y agoPosted Feb 21, 2015, 2:36 PMAccepted answerDesign page style.<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="testing.WebForm1" %> CS. file data. protected void Unnamed_Click(object sender, EventArgs e) { txtbox.Text = first.Text + second.Text; }
Pankaj Kumar Choudhary11y agoPosted Feb 21, 2015, 1:09 PMI can not understand what is your actual query. "how to merge two the checkbox value to textbox asp.net"But your solution can be:TextBox1.Text=CheckBox1.Text + CheckBox2.Text;
Joginder BangerPosted Feb 21, 2015, 2:36 PM
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="testing.WebForm1" %>
CS. file data.
protected void Unnamed_Click(object sender, EventArgs e)
{
txtbox.Text = first.Text + second.Text;
}
Pankaj Kumar ChoudharyPosted Feb 21, 2015, 1:09 PM
But your solution can be:
TextBox1.Text=CheckBox1.Text + CheckBox2.Text;