V vikram Apr 14, 2005 #1 is there any input type=hidden equilent in webform server control? setting textbox visible=flase does not work. thanks
is there any input type=hidden equilent in webform server control? setting textbox visible=flase does not work. thanks
D Dave Fancher Apr 14, 2005 #2 You have a couple of options. You can use Page.RegisterHiddenField() to dynamically create a hidden field [http://msdn.microsoft.com/library/d...temwebuipageclassregisterhiddenfieldtopic.asp] or you can use the HtmlInputHidden class to either reference a predefined hidden field or create one on the fly [http://msdn.microsoft.com/library/d...ebuihtmlcontrolshtmlinputhiddenclasstopic.asp] HTH
You have a couple of options. You can use Page.RegisterHiddenField() to dynamically create a hidden field [http://msdn.microsoft.com/library/d...temwebuipageclassregisterhiddenfieldtopic.asp] or you can use the HtmlInputHidden class to either reference a predefined hidden field or create one on the fly [http://msdn.microsoft.com/library/d...ebuihtmlcontrolshtmlinputhiddenclasstopic.asp] HTH
G Guest Apr 14, 2005 #3 Hi Vikram, You can use Hidden control under HTML Component in Tool bar. Thanks Hardip Wadhwa