I want to pass a class variable from 1 page to another page on link button click. The link button click event is written in the javascript query as follows:
<script type="text/javascript">
function RedirectTo() {
window.location.href = 'ApplyJobsByCandidate.aspx';
return false;
}
Now how can i pass a class variable through the query string? I want something like 'ApplyJobsByCandidate.aspx?id='+Class1.ID;
Please help me.