I am accessing a string from the previous page's hidden text. While I am reading the string the only last character of the string is getting truncated. When I tried viewing the string in the previous page itself I could see the complete string.
I have formed the string in the main page using java code as bellow
document.formRpt.ReportForHdn.value = document.formRpt.ReportForHdn.value +"'"+document.formRpt.item(document.getElementById ('cbx'+i).id).value+"'"
and i tried accessing the hidden value from the next page as bellow
Session("detrpt_for") = Request.Form ("ReportForHdn")
While accessing the string the single quote thats is been given is missing.
I have given a workaround solution for this, as bellow
document.formRpt.ReportForHdn.value = document.formRpt.ReportForHdn.value +"'"+document.formRpt.item(document.getElementById ('cbx'+i).id).value+"' "
Can anyone suggest me which limitation is causing this??