การส่งค่าข้ามฟอร์ม ทำยังไงคะ ??
คือมี 5 ฟอร์ม
ฟอร์มแรกเป็น RadioButton เราต้องเช็คที่ฟอร์ม 1 ใช่มั้ยคะ แล้วค่อยส่งค่าไปแสดงที่ฟอร์ม 5
string msg = "";
if (rdbm1.Checked) msg += rdbm1.Text + " ";
else if (rdbm2.Checked) msg += rdbm2.Text + " ";
else if (rdb3.Checked) msg += rdbm3.Text + " ";
else msg += rdbm4.Text + " ";
Form2 f2 = new Form2();
f2.Show();
this.Hide();
เราจะส่งค่า msg ไปแสดงใน Label ไปแสดงในฟอร์ม 5 ยังไงคะ
รบกวนขอคำแนะนำด้วยค่ะ ลองแล้วมันไม่สำเร็จสักที
ขอบคุณล่วงหน้านะคะ
ฟอร์มแรกเป็น RadioButton เราต้องเช็คที่ฟอร์ม 1 ใช่มั้ยคะ แล้วค่อยส่งค่าไปแสดงที่ฟอร์ม 5
string msg = "";
if (rdbm1.Checked) msg += rdbm1.Text + " ";
else if (rdbm2.Checked) msg += rdbm2.Text + " ";
else if (rdb3.Checked) msg += rdbm3.Text + " ";
else msg += rdbm4.Text + " ";
Form2 f2 = new Form2();
f2.Show();
this.Hide();
เราจะส่งค่า msg ไปแสดงใน Label ไปแสดงในฟอร์ม 5 ยังไงคะ
รบกวนขอคำแนะนำด้วยค่ะ ลองแล้วมันไม่สำเร็จสักที
ขอบคุณล่วงหน้านะคะ
เราสามารถจัดการกับ element ใดๆได้ในเพจโดยการอ้างถึงด้วย id แทนการใช้ name ซึ่งเป็นวิธีแบบเก่า
กฏมีอยู่ว่า
element แต่ละตัว จะต้องไม่มี id ที่ซ้ากัน
<form>
<input type="text" id="input_1" />
</form>
<form>
<input type="text" id="input_2" value="555" />
<input type="button" onclick=function(){document.getElementById('input_1').value = document.getElementById('input_2').value } />
</form>