Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.117.151.127
function Callexamapplicationform()
{
$("#page_main_div").load('html_modules/coll_exam_app_form.html',function()
{
document.getElementById('display_module_name').innerHTML = 'Exam Application Form';
document.getElementById('module_name_for_save').value = 'Exam Application Form';
// getDefaultHeadFooterLinks('Exam Application Form');
});
}
function GotoExamAppFrom()
{
var regno = $("#candidate_list_reg_no").val();
if(regno == '')
{
alert("Enter Register Number")
return;
}
$.ajax({
type: "POST",
url: $host_url+"collExamAppfromParam.demo",
data:"regno="+regno,
success: function($response){
$response = eval('(' + $response + ')');
if($response.error_code = 1)
{
var url = `http://studentportal.universitysolutions.in/bnu/student.php?r=${regno}&c=${$response.data.FCASTE}&li=${$response.data.FCONSTYPE}`;
window.open(url, '_blank');
}
}
});
}
|