I want change the Label's Text value in client side by javascript I use getElementById to set control's innerText value but the new value can't postback to Server how to pass the value to Server? thanks
The common approach would be to write the new name into a hidden field using client side code. Then upon postback you can get the value from the hidden field with server side code and then assign it to the label's text property. -- I hope this helps, Steve C. Orr, MCSD, MVP, CSM, ASPInsider http://SteveOrr.net "jiatiejun" wrote in message news:u4UVdJpzHHA.5772@TK2MSFTNGP02.phx.gbl... >I want change the Label's Text value in client side by javascript > > I use getElementById to set control's innerText value > > but the new value can't postback to Server > > how to pass the value to Server? > > thanks >