<%@ Page Language="C#" Buffer="false" %>

  1. #1

    <%@ Page Language="C#" Buffer="false" %>

    when set attribute buffer="false" error occurs.

    The web.config file for this project is missing the required DirectRequestModule

    Example:

    <%@ Page Language="C#" AutoEventWireup="true" Buffer="false" CodeBehind="Teste.aspx.cs" Buffer="false" Inherits="PXHP50HW.VIEWER.Teste" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    <!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 id="Head1" runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        
        </form>
    </body>
    </html>
    ========= CODE

    for (int i = 0, i <= 5; i++)
    {
         System.Threading.Thread.Sleep (2000);
         Response.Write ("OK");
    }
    Last edited by geoffrey.mcgill; Nov 21, 2013 at 4:32 PM. Reason: Please use [CODE] tags
  2. #2
    Unfortunally, Ext.Net doesn't support non buffered pages because it is required to get all generated code at once in Ext.Net http module (to transform it)
  3. #3
    Geoffrey McGill
    Founder

Similar Threads

  1. Replies: 6
    Last Post: May 31, 2013, 3:04 AM
  2. [CLOSED] Hidden="true" behaves as Visible="false"
    By marco.morreale in forum 2.x Legacy Premium Help
    Replies: 5
    Last Post: May 28, 2012, 3:17 PM
  3. Replies: 4
    Last Post: Oct 11, 2011, 2:42 AM
  4. Replies: 2
    Last Post: Jun 26, 2011, 1:59 AM
  5. Replies: 0
    Last Post: Jan 18, 2011, 3:53 AM

Posting Permissions