Re: Server Side ValidateOptions

  •  06-28-2010, 12:54 AM

    Re: Server Side ValidateOptions

    Hi atwoodkevin,
     
    Try the below example, it works fine for me.
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    4. <html xmlns="http://www.w3.org/1999/xhtml">   
    5. <head id="Head1" runat="server">   
    6.     <title>Untitled Page</title>   
    7. </head>   
    8.   
    9. <script runat="server">   
    10.     protected override void OnLoad(EventArgs e)   
    11.     {   
    12.         attachment1.ValidateOption.MaxSizeKB = 12040;   
    13.         base.OnLoad(e);   
    14.     }   
    15.   
    16. </script>   
    17.   
    18. <body>   
    19.     <form id="form1" runat="server">   
    20.         <CuteWebUI:UploadAttachments ID="attachment1" runat="server">   
    21.             <ValidateOption MaxSizeKB="1024" />   
    22.         </CuteWebUI:UploadAttachments>   
    23.     </form>   
    24. </body>   
    25. </html>  
    Regards,
     
    ken
View Complete Thread