Donnerstag, 28. Oktober 2010

My first blog post

This Blog moved to http://webapps-in-action.com/

Hi,
this is my new blog about my work with Ext.Net. In the last weeks i've been working a lot with the ASP.NET Web Controls from Coolite and I have to admit. It rocks! I've never be able to build so easy cross browser rich GUIs without usage of plugins like Abobe Air/Flash, Java or Silverlight.

ExtJS is a very powerful Javascript Framework, but covers only the GUI Part. Ext.Net breaks these boundaries and enables ASP.NET Developer a seemless integration.
Binding lots of data via AJAX is as easy as set a varaiable, but more samples on this will follow in the upcoming posts.

C# Code Highlighting Sample:
// Comment
public class Test {
public Testing() {
}
 
public void Method() {
/* Another Comment
on multiple lines */
int counter = 0;
}
}

ASPX Code Highlighting Sample:


Ext.NET





Ext.Net

2 Kommentare:

  1. Hi
    I've seen you've had experience with Ext.NET.
    I am currently starting to use it, and I've created some simple examples that runs fine on my localhost, but when uploading to my web server, I get an error:
    http://pruebas.tecnologiasadis.com/Imagenes/error.png

    I have been researching on various forums trying to locate an error related to my case, but can not find it. I wanted to know if you know why this is happening?
    Apparently the error is in the web.config, but I've been looking in Readme.txt file from Ext.Net, and it seems everything is in order. My web.config file is as follows:
    http://pruebas.tecnologiasadis.com/Imagenes/web.png

    My .dll files (Ext.Net.dll,Ext.Net.Utilities.dll,Ext.Net.xml,Newtonsoft.Json.dll,Newtonsoft.Json.xml) are located in the Bin folder.

    If you had the same problem and could help me I would appreciate it. Thanks

    AntwortenLöschen
  2. I have these in my bin folder:

    Ext.Net.dll
    Ext.Net.Utilities.dll
    Ext.Net.UX.dll
    Ext.Net.UX.pdb
    Ext.Net.xml
    Newtonsoft.Json.dll
    Newtonsoft.Json.xml

    Uses this config:

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
    <connectionStrings>
    ...
    </connectionStrings>
    <system.web>
    <compilation debug="true" targetFramework="4.0">
    <assemblies>
    <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    </assemblies>
    </compilation>
    <pages>
    <controls>
    <add tagPrefix="ext" namespace="Ext.Net" assembly="Ext.Net" />
    </controls>
    </pages>
    <httpHandlers>
    <add path="*/ext.axd" verb="*" type="Ext.Net.ResourceHandler" validate="false" />
    </httpHandlers>
    <httpModules>
    <add name="DirectRequestModule" type="Ext.Net.DirectRequestModule, Ext.Net" />
    </httpModules>
    </system.web>
    </configuration>

    Make sure your application pool on IIS7/7.5 is .NET 4.0 and in Integrated Mode and has the permissions to the dll files
    on the file system.

    AntwortenLöschen