Click here to Skip to main content
15,902,198 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to blink text Pin
Richard Deeming26-Mar-14 2:32
mveRichard Deeming26-Mar-14 2:32 
QuestionC# Web Forms: Add a context menu to a grid and outside grid also. Pin
AshwiniSH26-Mar-14 0:12
professionalAshwiniSH26-Mar-14 0:12 
AnswerRe: C# Web Forms: Add a context menu to a grid and outside grid also. Pin
Bikash Prakash Dash28-Mar-14 19:58
Bikash Prakash Dash28-Mar-14 19:58 
QuestionAjax Update Panel not working properly when using mutiple triggers contols on it Pin
Yat_desh9025-Mar-14 21:52
Yat_desh9025-Mar-14 21:52 
QuestionRe: Ajax Update Panel not working properly when using mutiple triggers contols on it Pin
Blikkies25-Mar-14 23:33
professionalBlikkies25-Mar-14 23:33 
QuestionWhatsapp group for. NET Developers Pin
rehmanabdurr25-Mar-14 19:32
rehmanabdurr25-Mar-14 19:32 
AnswerRe: Whatsapp group for. NET Developers Pin
Kornfeld Eliyahu Peter25-Mar-14 22:09
professionalKornfeld Eliyahu Peter25-Mar-14 22:09 
QuestionWindows update (KB2894843) makes my ASP.NET web application post back to behave differently Pin
Member 1069366523-Mar-14 18:21
Member 1069366523-Mar-14 18:21 
XML
I am debugging an issue on my code caused by KB2894843. I know that MS has made EnableviewstateMAC  = true in this KB update.  The below piece of code is working fine in redirecting from page 1 to page 2 on click of submit except in the page 2  after redirecting from page 1, post back value is true. It is treating the page 2 as post back but ideally it should be true. I am not sure why it is treat it as post back.  Appreciate any help on this.

Page  1 :

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Page1.aspx.vb" Inherits="WebApplication1._Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
        <script type="text/javascript">
        function f() {
            document.form1.action = "Page2.aspx";
            document.form1.submit();
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <input id="Submit1" type="submit" value="Click" onclick="f()" runat="server" />
    </div>
    </form>
</body>
</html>


Page 2 :

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Page2.aspx.vb" Inherits="WebApplication1.Page2" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    </div>
    </form>
</body>
</html>

Krish

AnswerRe: Windows update (KB2894843) makes my ASP.NET web application post back to behave differently Pin
Richard Deeming24-Mar-14 3:13
mveRichard Deeming24-Mar-14 3:13 
GeneralRe: Windows update (KB2894843) makes my ASP.NET web application post back to behave differently Pin
Member 1069366524-Mar-14 4:56
Member 1069366524-Mar-14 4:56 
QuestionIHttpModule and Build Action = Compile? Or Content? Pin
Swab.Jat23-Mar-14 1:40
Swab.Jat23-Mar-14 1:40 
Questiontextile cad fabric output simulation Pin
Member 1057081122-Mar-14 1:55
Member 1057081122-Mar-14 1:55 
QuestionInvalid initializer member declarator -- error Pin
miss78621-Mar-14 6:28
miss78621-Mar-14 6:28 
AnswerRe: Invalid initializer member declarator -- error Pin
Richard Deeming21-Mar-14 6:41
mveRichard Deeming21-Mar-14 6:41 
GeneralRe: Invalid initializer member declarator -- error Pin
miss78621-Mar-14 7:54
miss78621-Mar-14 7:54 
Questionasp.net Pin
Member 1063591820-Mar-14 21:40
Member 1063591820-Mar-14 21:40 
AnswerRe: asp.net Pin
Peter Leow20-Mar-14 21:49
professionalPeter Leow20-Mar-14 21:49 
AnswerRe: asp.net Pin
Tom Marvolo Riddle20-Mar-14 22:02
professionalTom Marvolo Riddle20-Mar-14 22:02 
QuestionSession , ViewState , me.cache ?? I need to save class data between posts Pin
Member 1068685120-Mar-14 10:27
Member 1068685120-Mar-14 10:27 
AnswerRe: Session , ViewState , me.cache ?? I need to save class data between posts Pin
ZurdoDev20-Mar-14 15:49
professionalZurdoDev20-Mar-14 15:49 
GeneralRe: Session , ViewState , me.cache ?? I need to save class data between posts Pin
Member 1068685121-Mar-14 7:51
Member 1068685121-Mar-14 7:51 
AnswerRe: Session , ViewState , me.cache ?? I need to save class data between posts Pin
ZurdoDev21-Mar-14 7:58
professionalZurdoDev21-Mar-14 7:58 
GeneralRe: Session , ViewState , me.cache ?? I need to save class data between posts Pin
Member 1068685121-Mar-14 8:19
Member 1068685121-Mar-14 8:19 
GeneralRe: Session , ViewState , me.cache ?? I need to save class data between posts Pin
ZurdoDev21-Mar-14 8:22
professionalZurdoDev21-Mar-14 8:22 
QuestionAuto how to receive data in asp page when data sent from andro Pin
Ngan Tran20-Mar-14 5:14
Ngan Tran20-Mar-14 5:14 

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.