本文介绍了当使用c#在asp.net中选中复选框时,如何将值从一个文本框发送到另一个文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在不使用提交按钮的情况下使用c#在asp.net中选中复选框,如何将值从一个文本框发送到另一个文本框.


单击提交按钮时,我正在获取代码.

因此,请找出查询并将有用的代码发送给我.



感谢!

Sriaknth.J

how to send the values from one textbox to another when the checkbox is selected in asp.net using c# without submit button.


I am getting the code when the submit button is clicked.

So please find out the query and send me the useful code to me.



Thanks Regards

Sriaknth.J

推荐答案



if(checkbox1.checked)
{
textbox2.text=textbox1.text
}


这篇关于当使用c#在asp.net中选中复选框时,如何将值从一个文本框发送到另一个文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 09:48