Hello Friends

I need to take an action at server side depending on the choice the user has made at client (client side message box)

I have created a text box and assigned the value from the javascript and tried to access it from the serverside

code. It works fine in the standalone page, but when i try the same code inside a content page, nothing

happens

Code inside a standalone page

function GetConfirm()
{
var ReturnedValue = confirm("Are you sure?");
form1.txtboxName.value= "Welcome";
}

Thanks for your time
Sara