Hi,
As far as I know you can't set the onclick serverside
so perhaps something like this will do the trick...( IE )
<script>
function checkIt(){
if(event.srcElement.type == "radio") event.srcElement.form.TEXTBOXNAME.value
= event.srcElement.value;
}
</script>
<body onclick="checkit()">
More info
http://msdn.microsoft.com/library/de...ence_entry.asp
--
Best Regards
Vidar Petursson
==============================
Microsoft Visual: Scripting MVP 2000-2004
http://www.icysoft.com/
http://www.deus-x.com/ Instant e-commerce
http://www.microsoft.com/technet/scriptcenter/
Playground:
http://213.190.104.211/ ( IE 5.5+ only )
No matter where you go there you are
==============================
"Hiten" <> wrote in message
news:F6838CC8-2ED8-40B8-AED9-...
> Hi,
>
>
> I am using Radio button list control on a web page and I want to display
> value of selected radiobutton list item in to a textbox control without
> using postback event. I want to use javascript instead.
>
> Anybody has idea of how to achieve this?? Sample would be appreciated...
>
> Thanks
> Hiten
>