Click here to Skip to main content
15,890,043 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Multlingual website in asp.net Pin
RichardGrimmer5-Sep-12 4:43
RichardGrimmer5-Sep-12 4:43 
QuestionConsuming WCF Service in ASP.Net application Pin
indian1437-Aug-12 13:27
indian1437-Aug-12 13:27 
AnswerRe: Consuming WCF Service in ASP.Net application Pin
Abhinav S7-Aug-12 17:33
Abhinav S7-Aug-12 17:33 
AnswerRe: Consuming WCF Service in ASP.Net application Pin
jkirkerx7-Aug-12 18:26
professionaljkirkerx7-Aug-12 18:26 
GeneralCheckedChanged doesn't fires Pin
Kujtim Hyseni7-Aug-12 4:23
Kujtim Hyseni7-Aug-12 4:23 
GeneralRe: CheckedChanged doesn't fires Pin
bVagadishnu7-Aug-12 7:13
bVagadishnu7-Aug-12 7:13 
QuestionPerpetual Pop Up associated with application, not page Pin
toltec776-Aug-12 20:03
professionaltoltec776-Aug-12 20:03 
AnswerRe: Perpetual Pop Up associated with application, not page Pin
jkirkerx7-Aug-12 9:09
professionaljkirkerx7-Aug-12 9:09 
toltec77 wrote:
the popup will need close

Yes it can be done, but you failed to state if it's a modal popup or browser window popup.

If it' the latter

You need to use javascript to open and close the window via the DOM
I think this is correct, off the top of my head, it includes a querystring as well for the aspx page, and generates a fixed size browser window and not a modal popup.
// Global Javascript Variable
var imageBrowser;

function open_Library(imageType) {
    
    var template = $('[id*="_txt_ProductEditor_Template"]').val();
    imageBrowser = window.open("image_Library.aspx?type=" + imageType  + "&template=" + template, 'child', "width=900, height=800, location=no, menubar=no, scrollbars=no, status=no, toolbar=no");
        
    if (window.focus) {
        imageBrowser.focus();
           
    }    
}


// Close the ImageBrowser Window
    imageBrowser.close();


If it's a modal popup, the you close it the opposite way you displayed it.

You were not very clear is explaining what leave application means, and what application is, is it just 1 control, a whole page, an entire website. I'm not a mind reader.
GeneralRe: Perpetual Pop Up associated with application, not page Pin
toltec777-Aug-12 11:02
professionaltoltec777-Aug-12 11:02 
GeneralRe: Perpetual Pop Up associated with application, not page Pin
jkirkerx7-Aug-12 12:33
professionaljkirkerx7-Aug-12 12:33 
GeneralRe: Perpetual Pop Up associated with application, not page Pin
toltec777-Aug-12 12:49
professionaltoltec777-Aug-12 12:49 
GeneralRe: Perpetual Pop Up associated with application, not page Pin
jkirkerx7-Aug-12 13:33
professionaljkirkerx7-Aug-12 13:33 
GeneralNew Idea Pin
jkirkerx8-Aug-12 7:56
professionaljkirkerx8-Aug-12 7:56 
QuestionInput string was not in a correct format Pin
Jassim Rahma6-Aug-12 11:17
Jassim Rahma6-Aug-12 11:17 
AnswerRe: Input string was not in a correct format Pin
jkirkerx6-Aug-12 12:57
professionaljkirkerx6-Aug-12 12:57 
AnswerRe: Input string was not in a correct format Pin
Shameel6-Aug-12 23:43
professionalShameel6-Aug-12 23:43 
Questionasp.net popup window Pin
rachel_m6-Aug-12 6:50
rachel_m6-Aug-12 6:50 
AnswerRe: asp.net popup window Pin
jkirkerx6-Aug-12 7:28
professionaljkirkerx6-Aug-12 7:28 
AnswerRe: asp.net popup window Pin
Deflinek8-Aug-12 22:28
Deflinek8-Aug-12 22:28 
AnswerRe: asp.net popup window Pin
Vijay Selvaraj27-Aug-12 0:20
Vijay Selvaraj27-Aug-12 0:20 
QuestionOptimize emails on mobile devices through Exact Target Pin
Agentdufffr5-Aug-12 20:53
Agentdufffr5-Aug-12 20:53 
QuestionEnd User Facebook Login Pin
sankar07Ind5-Aug-12 20:03
sankar07Ind5-Aug-12 20:03 
Questionwhy connection attempt failed? Pin
Jassim Rahma5-Aug-12 12:03
Jassim Rahma5-Aug-12 12:03 
AnswerRe: why connection attempt failed? Pin
Jassim Rahma5-Aug-12 12:08
Jassim Rahma5-Aug-12 12:08 
AnswerRe: why connection attempt failed? Pin
Wes Aday5-Aug-12 15:52
professionalWes Aday5-Aug-12 15:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.