本文介绍了如何从asp.net中的隐藏字段中获取价值,而无需提及runat服务器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
将html文本框存储到javascript中的html隐藏字段(没有runat服务器),
但是隐藏的字段在asp.net中显示空值...
我在隐藏字段中提到过runat服务器意味着它可以正常工作.
我想知道如何在asp.net中使用不带runat服务器的隐藏字段
store the html textbox to html hidden field(without runat server) in javascript,
but the hidden fields display null value in asp.net...
i mention runat server in hidden fields means its working..
i want to know how to use hidden field without runat server in asp.net
推荐答案
document.getElementById('TextboxId').value = document.getElementById('HiddenInputId').value;
You can see below link for working example:
Working Example[^]
这篇关于如何从asp.net中的隐藏字段中获取价值,而无需提及runat服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!