Click here to Skip to main content
15,887,676 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Dropdown control doesn't always populate Pin
jkirkerx4-Mar-14 6:14
professionaljkirkerx4-Mar-14 6:14 
AnswerRe: Dropdown control doesn't always populate Pin
Bernhard Hiller4-Mar-14 2:28
Bernhard Hiller4-Mar-14 2:28 
GeneralRe: Dropdown control doesn't always populate Pin
#realJSOP4-Mar-14 3:43
mve#realJSOP4-Mar-14 3:43 
GeneralRe: Dropdown control doesn't always populate Pin
Bernhard Hiller4-Mar-14 22:11
Bernhard Hiller4-Mar-14 22:11 
QuestionASP.net - Webforms - Dynamic controls Pin
tinaclement2-Mar-14 20:56
tinaclement2-Mar-14 20:56 
AnswerRe: ASP.net - Webforms - Dynamic controls Pin
Richard MacCutchan2-Mar-14 22:58
mveRichard MacCutchan2-Mar-14 22:58 
QuestionWindow.open Pin
Zeyad Jalil1-Mar-14 20:15
professionalZeyad Jalil1-Mar-14 20:15 
AnswerRe: Window.open Pin
Kornfeld Eliyahu Peter1-Mar-14 20:43
professionalKornfeld Eliyahu Peter1-Mar-14 20:43 
Try to change the target of your form in which the button is - all your form elements will be posted the the new page...

HTML
<script type="text/javascript">
    function buttonHandler()
    {
        form=document.getElementById('IdOfForm');
        // send to new page
        form.target='_blank';
        form.action='newpage.aspx';
        form.submit();
        // restore your page behavior
        form.action='';
        form.target='';
    }
</script>

I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)

AnswerRe: Window.open Pin
jkirkerx2-Mar-14 9:19
professionaljkirkerx2-Mar-14 9:19 
QuestionPREVIEW ASP.NET PAGE ON A WEB BROWSER Pin
Member 106347491-Mar-14 0:15
Member 106347491-Mar-14 0:15 
SuggestionRe: PREVIEW ASP.NET PAGE ON A WEB BROWSER Pin
Richard Deeming3-Mar-14 0:50
mveRichard Deeming3-Mar-14 0:50 
QuestionMVC4 - WebMatrix.WebData.SimpleMembershipProvider vs System.Web.Security.MembershipProvider Pin
Swab.Jat27-Feb-14 17:17
Swab.Jat27-Feb-14 17:17 
QuestionWCF error, System.ServiceModel.CommunicationException the maximum message size quota for incoming messages has been exceeded Pin
littleGreenDude27-Feb-14 4:24
littleGreenDude27-Feb-14 4:24 
QuestionJQuery to get sum of testboxes values of each row in Repeater Control Pin
indian14326-Feb-14 11:30
indian14326-Feb-14 11:30 
AnswerRe: JQuery to get sum of testboxes values of each row in Repeater Control Pin
Ahmed Bensaid26-Feb-14 23:06
professionalAhmed Bensaid26-Feb-14 23:06 
GeneralRe: JQuery to get sum of testboxes values of each row in Repeater Control Pin
indian14327-Feb-14 5:50
indian14327-Feb-14 5:50 
QuestionClient side pagination is not working in jqGrid Pin
manishchourasia200026-Feb-14 1:16
professionalmanishchourasia200026-Feb-14 1:16 
AnswerRe: Client side pagination is not working in jqGrid Pin
Ahmed Bensaid26-Feb-14 2:33
professionalAhmed Bensaid26-Feb-14 2:33 
QuestionASP.NET Data Grid and Data List Click Event Pin
sivagiri126-Feb-14 1:04
sivagiri126-Feb-14 1:04 
AnswerRe: ASP.NET Data Grid and Data List Click Event Pin
Ahmed Bensaid26-Feb-14 2:30
professionalAhmed Bensaid26-Feb-14 2:30 
GeneralRe: ASP.NET Data Grid and Data List Click Event Pin
sivagiri126-Feb-14 17:43
sivagiri126-Feb-14 17:43 
SuggestionRe: ASP.NET Data Grid and Data List Click Event Pin
Ahmed Bensaid26-Feb-14 21:39
professionalAhmed Bensaid26-Feb-14 21:39 
Questionpassing value betwen pages Pin
tarzn24-Feb-14 5:47
tarzn24-Feb-14 5:47 
AnswerRe: passing value betwen pages Pin
Richard Deeming24-Feb-14 9:04
mveRichard Deeming24-Feb-14 9:04 
Questioncrystal report Pin
Member 1062089124-Feb-14 1:10
Member 1062089124-Feb-14 1:10 

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.