Example
Source
Run as client-side object
If still want to use an edit dialog window but need full control over the layout of the form then again
DbNetEdit
can be used in place of the standard
DbNetGrid
edit dialog to provide this degree of flexibility
Register the component libraries
<%@ Register TagPrefix="Grid" Namespace="DbNetLink.Web.UI" Assembly="DbNetLink.DbNetGrid" %>
Server Control
<form id="Form1" name="Form1" method="post" runat="server"> <Grid:DbNetGrid id="dbnetgrid1" runat="server" ConnectionString = "suite" FromPart = "customers" Headings = "Customer ID,Customer Name,Address,City,Region,Phone,Fax" SelectPart = "customerid,companyname,address,city,region,phone,fax" View = "true" PrimaryKeyColumn = "customerid" CustomEditDialog = "grid_edit_dialog_integration_dlg_server.aspx" > </Grid:DbNetGrid> </form>