Click here to Skip to main content
15,867,308 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionASP.NET GlobalResources.. Use <%$ or <%= embedded code? Pin
JD8629-Oct-13 11:59
JD8629-Oct-13 11:59 
AnswerRe: ASP.NET GlobalResources.. Use <%$ or <%= embedded code? Pin
Wombaticus2-Nov-13 7:43
Wombaticus2-Nov-13 7:43 
QuestionHow To get pop up window using java script Pin
chahthuranga28-Oct-13 23:35
chahthuranga28-Oct-13 23:35 
AnswerRe: How To get pop up window using java script Pin
thatraja29-Oct-13 2:23
professionalthatraja29-Oct-13 2:23 
AnswerRe: How To get pop up window using java script Pin
rahul_kakadia29-Oct-13 21:06
rahul_kakadia29-Oct-13 21:06 
AnswerRe: How To get pop up window using java script Pin
CIKolkataDeveloper10-Nov-13 22:18
CIKolkataDeveloper10-Nov-13 22:18 
QuestionGET DATA FROM PAGE AS (CTRL + S) Pin
Member 1030767728-Oct-13 23:13
Member 1030767728-Oct-13 23:13 
AnswerRe: GET DATA FROM PAGE AS (CTRL + S) Pin
Blikkies29-Oct-13 4:21
professionalBlikkies29-Oct-13 4:21 
First you have to disable Ctrl + S Shortcut so that the browser does not try to save the html page,

Add a button and set the style property to "display:none", then you can trigger the button using jquery.

Here is an example of how to disable the shortcut and trigger the button: (did not try this myself, but you get the idea)

JavaScript
$(window).keydown( function (event) {
       if (event.which == 83 && event.ctrlKey) {
           $('#<%=btnMyButton.ClientID %>').click();
           event.preventDefault();
           return false;
       }

   });

GeneralRe: GET DATA FROM PAGE AS (CTRL + S) Pin
Member 1030767729-Oct-13 21:12
Member 1030767729-Oct-13 21:12 
GeneralRe: GET DATA FROM PAGE AS (CTRL + S) Pin
Member 1030767729-Oct-13 21:24
Member 1030767729-Oct-13 21:24 
QuestionTimer Pin
AnupamSinghJadoun28-Oct-13 21:43
AnupamSinghJadoun28-Oct-13 21:43 
QuestionCrystal Report Error Pin
Tanadon Manpiboon28-Oct-13 17:49
professionalTanadon Manpiboon28-Oct-13 17:49 
AnswerRe: Crystal Report Error Pin
thatraja28-Oct-13 23:29
professionalthatraja28-Oct-13 23:29 
QuestionHelp popup on new features Pin
civic06028-Oct-13 10:50
civic06028-Oct-13 10:50 
QuestionRe: Help popup on new features Pin
thatraja29-Oct-13 3:13
professionalthatraja29-Oct-13 3:13 
Questionmy question comes slow Pin
Member 771455925-Oct-13 20:21
Member 771455925-Oct-13 20:21 
AnswerRe: my question comes slow Pin
Abhinav S26-Oct-13 1:33
Abhinav S26-Oct-13 1:33 
AnswerRe: my question comes slow Pin
Pratik Bhuva1-Nov-13 3:19
professionalPratik Bhuva1-Nov-13 3:19 
QuestionAbout MVC and Area Pin
Super Lloyd24-Oct-13 18:39
Super Lloyd24-Oct-13 18:39 
SuggestionRe: About MVC and Area Pin
Richard MacCutchan24-Oct-13 21:42
mveRichard MacCutchan24-Oct-13 21:42 
AnswerRe: About MVC and Area Pin
codestar00724-Oct-13 23:32
professionalcodestar00724-Oct-13 23:32 
GeneralRe: About MVC and Area Pin
Super Lloyd26-Oct-13 17:43
Super Lloyd26-Oct-13 17:43 
QuestionUpdate Panel is not Work Pin
Tanadon Manpiboon24-Oct-13 17:47
professionalTanadon Manpiboon24-Oct-13 17:47 
AnswerRe: Update Panel is not Work Pin
Member 771455925-Oct-13 20:27
Member 771455925-Oct-13 20:27 
GeneralRe: Update Panel is not Work Pin
Tanadon Manpiboon28-Oct-13 17:40
professionalTanadon Manpiboon28-Oct-13 17:40 

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.