Project is based on Nhibernate & spring framework with ext.net controls .
I have a usercontrol UCA.ascx which has a hyperlink on click of which I want to generate a popup to show details . So what can be done ? Any help is welcome
Project is based on Nhibernate & spring framework with ext.net controls .
I have a usercontrol UCA.ascx which has a hyperlink on click of which I want to generate a popup to show details . So what can be done ? Any help is welcome
The target attribute allows you set the target window of the anchor.
<a target="_blank" href="url"></a>
you can write a function like this
function openWindow() {
var URL = "/Test.aspx"
window.open(URL);
}
and call like this
<a onclick="openWindow()" />
For popup you can use AJAX modal popup extender.
http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/ModalPopup/ModalPopup.aspx
Have you tried using JqueryUI Dialogue Box.
add required input
box inside the div which is going to popup.
<div id="dialog" title="Basic dialog">
//show details here....
</div>
you can modify the div and add whatever controls you want inside it.