Hi there, im using AjaxToolKit in aspx, so a cue is how to set values to textbox? i was using javascript to retrieve values from another aspx, so now i have (for example) a sum of prices in a local var (in codebehind) and i want to set that value in a TextBox with runat="server"
I have to use jquery or javascript? with webmethods? how could be that? thanks
I also try this at codebehind :
((TextBox)FindControl("txtTotalAmount")).Text = total;
I found some tips for example, that id changes when are in html context, obviously something like
ctl00_cphMainContent_how can i tame this?