i have a jquery
function MoveTo() {
var realvalues = [];
var selectedValues = "";
var Existingvalues = $('#<%=HFSelecteditems.ClientID%>').val();
var currentval = "";
$('#<%=lbItemList.ClientID%> :selected').each(function(i, selected) {
var AddL = true;
var ExistingarrvalL = Existingvalues.split(",");
currentval = $(selected).val() + ";" + $(selected).text();
jQuery.each(ExistingarrvalL, function(j, existingvalues) {
if (ExistingarrvalL[j] == currentval) {
AddL = false;
return false;
}
});
if (AddL) {
selectedValues += currentval + ",";
}
});
Existingvalues += selectedValues;
alert(Existingvalues);
$('#<%=HFSelecteditems.ClientID%>').val(Existingvalues);
UpdateSelectedList();
}
how can i access the value of Existingvalues in code behind?im using c#