BISE DG Khan Announces Intermediate Part 1 Annual Examination Result 2019


BISE DG Khan Announces Intermediate Part 1 Annual Examination Result 2019

Dera Ghazi Khan (D.G Khan) Board of Intermediate and Secondary Education (BISE) has announced the results of Intermediate Part I (Annual) Examination 2019 today (Wednesday) October 9, 2019.

Results


Roll Number Name Marks Grade

Candidates can find their results by entering their roll number in the search box below.




// Add an event listener for the submit event searchForm.addEventListener('submit', (event) => { // Prevent the form from submitting event.preventDefault();

// Get the roll number from the input field const rollNumber = document.querySelector('input[name="roll-number"]').value;

// Make a request to the server to get the results for the given roll number fetch(`/results/${rollNumber}`) .then(response => response.json()) .then(data => { // Populate the results table with the data from the server const resultsTable = document.querySelector('.results-table tbody'); resultsTable.innerHTML = data.map(result => `

${result.rollNumber} ${result.name} ${result.marks} ${result.grade}

`).join(''); }); });


By admin