views:

804

answers:

2

The catch is this is a .NET 1.0 project and there is no hidden field control...

So this is out of the question:


<asp HiddenField Ruant="server" ID="hdn" />

I vaguely remember some type of HtmlHiddenInput class that allowed similar functionality...does anybody know how to do this?

Thanks.

A: 

just use an asp textbox and the visible=false property

Jas
This works, but feels dirty.
g .
+6  A: 

You can use a regular input or create a custom server control.

<input type="hidden" runat="server" />
Cristian Libardo
I tried this, but it didn't work.
g .
what did you try and how do you perceive it doesn't work?
Cristian Libardo