Installation and useRequirementsAxpDataGrid requires .Net FrameWork 1.0 or 1.1 Please note that 2 assemblies are delivered, targeting each platform. These can be found in the subdirectories NET10 and NET11 respectively. Using AxpDataGrid in your Asp.Net application 1. Copy the AxpDBNet.dll file to the bin directory of your application. 2. For licensed versions, copy the Axezz.WebControls.AxpDataGrid.lic file to the same directory 3. Make sure to add a reference to AxpDBNet.dll in your project Visual Studio.Net integration 1. Copy the releveant AxpDBNet.dll to a directory directly accessible from the machine you have installed Visual Studio to. 2. Open Visual Studio.Net and select the Tools->Add/Remove Toolbox Items... Alternatively right click the tool-box to active the pop-up menu to Add Toolbox Items. Click the Browse... button and select AxpDBNet.dll Microsoft ASP.NET Web Matrix (from www.asp.net) integration 1. Always create a proper web application when using AxpDataGrid! 2. Place the AxpDBNet.dll in the applications bin directory. (Create the directory manually if it does not exist) To be able to include and use AxpDataGrid in WebMatrix version 0.6 on a computer having both .Net Framework 1.0 and 1.1 installed, and you wish to use AxpDataGrid for 1.1., add the following code to the WebMatrix.exe.config file (this file is normally found in \Program Files\Microsoft ASP.NET Web Matrix\v0.6.812). Add the code just before the section <runtime> to enable WebMatrix for the .Net FrameWork 1.1
<startup>
How to include the component in an Aspx page The AxpDataGrid should always be created on an aspx page as a control. It must be placed inside a form tag Example aspx code:
<%@ Register TagPrefix="axp" Namespace="Axezz.WebControls" Assembly="AxpDBNet" %>
Get the Samples up and running 1. Locate the zipped sample corresponding to your environment 2. Unzip the content to your local disk. 3. Create a virtual directory for the project root using Internet Service Manager 4. Point your browser to the newly created virtual directory (e.g. http://localhost/AxpDbNetVBSample) |