[Mono-dev] System.Web.Extension

Onur Gumus emperon at gmail.com
Tue Aug 28 02:46:12 EDT 2007


I've checked out the code from svn and compiled with Miguel's make file. So
far so good. But when I add the dll to my project and configure my
Web.config as of Microsoft wise (you , you have to type bunch of lines to
your web.config)  I got type not found error messages for asp:TextBox and so
on. You know both System.Web.Extension.dll and System.Web.dll implements the
same namespace Syste.Web.UI and according to the MS specs we need to use
both of them with asp prefix.

Finally MS specs suggest we should never use the dll directly rather than we
ought to use them via GAC which is somewhat contraversial to what Miguel
said.

Is there any simple example how to configure web.config and a small aspx
page to see if I am doing something wrong ?

This one is mine

<%@ Page Language="C#" Inherits="test55.xx" %>

<html>
<head>
  <title>xx</title>
</head>
<body>
  <form id="form1" runat="server">
  <asp:ScriptManager id="AdminScriptManager" runat="server" />^M

    <asp:TextBox id="textBox1" runat="server"/>
    <asp:Button id="button1" runat="server" OnClick="onButtonClick"/>

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


<?xml version="1.0"?>


<configuration>
  <configSections>
    <sectionGroup name="system.web.extensions"
        type="System.Web.Configuration.SystemWebExtensionsSectionGroup,
        System.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
        PublicKeyToken=31bf3856ad364e35">
      <sectionGroup name="scripting"
        type="System.Web.Configuration.ScriptingSectionGroup,
        System.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
        PublicKeyToken=31bf3856ad364e35">
          <section name="scriptResourceHandler"
            type="
System.Web.Configuration.ScriptingScriptResourceHandlerSection,
            System.Web.Extensions, Version=1.0.61025.0,
            Culture=neutral, PublicKeyToken=31bf3856ad364e35"
            requirePermission="false"
            allowDefinition="MachineToApplication"/>
        <sectionGroup name="webServices"
            type="System.Web.Configuration.ScriptingWebServicesSectionGroup,

            System.Web.Extensions, Version=1.0.61025.0,
            Culture=neutral, PublicKeyToken=31bf3856ad364e35">
          <section name="jsonSerialization"
              type="
System.Web.Configuration.ScriptingJsonSerializationSection,
              System.Web.Extensions, Version=1.0.61025.0,
              Culture=neutral, PublicKeyToken=31bf3856ad364e35"
              requirePermission="false" allowDefinition="Everywhere" />
          <section name="profileService"
              type="System.Web.Configuration.ScriptingProfileServiceSection,

              System.Web.Extensions, Version=1.0.61025.0,
              Culture=neutral, PublicKeyToken=31bf3856ad364e35"
              requirePermission="false"
              allowDefinition="MachineToApplication" />
          <section name="authenticationService"
              type="
System.Web.Configuration.ScriptingAuthenticationServiceSection,
              System.Web.Extensions, Version=1.0.61025.0,
              Culture=neutral, PublicKeyToken=31bf3856ad364e35"
              requirePermission="false"
              allowDefinition="MachineToApplication" />
        </sectionGroup>
      </sectionGroup>
    </sectionGroup>
  </configSections>


 <system.web>
  <pages>
    <controls>
      <add tagPrefix="asp" namespace="System.Web.UI" assembly="
System.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35"/>
    </controls>
  </pages>

   <httpModules>
    <add name="ScriptModule" type="System.Web.Handlers.ScriptModule,
System.Web.Extensions, Version=1.0.61025.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35"/>
  </httpModules>

  <httpHandlers>
    <remove verb="*" path="*.asmx"/>
    <add verb="*" path="*.asmx" validate="false" type="
System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions,
Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
    <add verb="*" path="*_AppService.axd" validate="false" type="
System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions,
Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
    <add verb="GET,HEAD" path="ScriptResource.axd" type="
System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=
1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
validate="false"/>
  </httpHandlers>

</system.web>


</configuration>





On 8/27/07, Miguel de Icaza <miguel at novell.com> wrote:
>
> Hello,
>
>    [ This is a suggestion partially for Hari, who is starting to
>      dip his feet in ASP.NET ]
>
> > > Is the mono version of System.Web.Extension.dll usable from svn ?
> > Yes. (Though not completely finished).
> >
> > > I tried it and I am unable to use it the same of Microsoft's.
> > Please post the concrete problems you faced.
>
> I think that we should try to try to get the ASP.NET AJAX Control
> Toolkit that Microsoft has open sourced to run on Mono, and to try to
> run their sample applications with it.
>
> The toolkit is here:
>
>         http://asp.net/ajax/control-toolkit/live/
>



-- 
Warning: If you are reading this then this warning is for you. Every word
you read of this useless fine print is another second off your life. Don't
you have other things to do? Is your life so empty that you honestly can't
think of a better way to spend these moments? Or are you so impressed with
authority that you give respect and credence to all that claim it? Do you
read everything you're supposed to read? Do you think every thing you're
supposed to think? Buy what you're told to want? Get out of your apartment.
Meet a member of the opposite sex. Stop the excessive shopping and
masturbation.Quit your job. Start a fight. Prove you're alive. If you don't
claim your humanity you will become a statistic. You have been warned - Onur
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/mono-devel-list/attachments/20070828/0b242b38/attachment.html 


More information about the Mono-devel-list mailing list