vote up 0 vote down star

Hi all,

I have a LinkButton inside a data list. When I click on this LinkButton, I want to open a modal widow and load another html page in it.

Can you guys please help me with this?

flag
Are you so short on time, that you couldn't type out the word "please"? If so, you need to loosen up your schedule a bit. – mgroves Jun 30 at 12:51
2  
Ha! Edited the question. – Kirtan Jun 30 at 12:54

4 Answers

vote up 0 vote down

I have always been a big fan of YUI, they have great documentation and Examples showing how to set things up. [ i love jQuery too ].

Look at YUI's Container Objects. They have very slick skinable Modal Panels:

http://developer.yahoo.com/yui/container/panel/

Here is a simple example:

http://developer.yahoo.com/yui/examples/container/panel-loading.html

Server Side

button.Attributes.Add("click", "popModal");

Client Side

<script>
    function popModal(e) {
        // Initialize the temporary Panel to display while waiting for external content to load
        var SavingPanel =
                        new YAHOO.widget.Panel("wait",
        	                { width: "240px",
        	                    fixedcenter: true,
        	                    close: false,
        	                    draggable: false,
        	                    zindex: 1000,
        	                    modal: true,
        	                    visible: true
        	                }
                        );

        SavingPanel.setHeader("Saving, please wait...");
        SavingPanel.setBody('<img src="http://l.yimg.com/a/i/us/per/gr/gp/rel_interstitial_loading.gif"  />');
        SavingPanel.render(document.body);

    }
</script>
link|flag
vote up 0 vote down

hi check ModalPopupExtender....It's a component of Ajax Control toolkit. First download it from from CodePlex ....and when you add reference the *Binary.dll to your project...you can use it within your pages.

link|flag
vote up 0 vote down

How to ask questions the smart way

link|flag
Not an answer, I guess, you can put the link in the comments tho! – Kirtan Jun 30 at 12:55
You are correct, its not an answer, thats why I made it a wiki. Before you edited this question, it came across as rude and arrogant. – Tim Jarvis Jun 30 at 12:57
Yep! Saw it. Someone -1ed you, have bumped you up +1. – Kirtan Jun 30 at 12:59
By the way, I agree with what you did to tidy up the question it makes it more valuable to the site. I think it would have just been downvoted to oblivion otherwise. – Tim Jarvis Jun 30 at 13:09
vote up 2 vote down

You should check out a jQuery plugin like Thickbox, which I've used to do exactly what you've described.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.