|
The samples are based on the Northwind database that is included in both MS
Access and SQL Server.
The datamodel of the Northwind database is as follows:
Note that the web.config file of the TEdit.NET samples site has the ASP.NET
feature
smartnavigation enabled. This prevents screen flicker, assures that the
browser scrollbars retain their position between postbacks and prevents browser
post-back warnings when the Back button of the browser is used.
The
validateRequest request feature is disabled, enabling the user to enter
any text into the database. This is safe, as TEdit.NET prevents HTML scripts
attacts by HTML encoding all text by default. To apply these settings in all
pages of your own site, add the following to your web.config file.
<system.web>
<pages
smartNavigation="true"
validateRequest="false"></pages>
</system.web>
The full source code of the samples can be
viewed online on the DVXP site, and is also included in the
download of the table editor.
|