Posted on: 11/25/2014 6:17:34 PM | Views : 402

Dear all,
I am using jquery datatable to display some employee details.
On my dt i have a hyperlink and on click of the hyperlink, i want to display a .aspx page as a modal popup .
Using the below code i can redirect it to my destination page, say empdetails.aspx, and on the page load of the empdetails.aspx page, i want to display it as  a modal popup.
is it possible to do that? or should i go with the jquery itself?
"columns": [{ "data": "emp_id", "title": "emp_id", sClass: "hidden" },                          {"data": "emp_name", "render": function (data, type, full, meta) { return '<a href="empdetails.aspx?emp_id=' + full.emp_id + '&searchid=2">' + data + '</a>'; } }, &nb ...

Go to the complete details ...