I'm not sure what you mean but here is the code in Dreamweaver:
<%@LANGUAGE="VBSCRIPT"%> <!--#include file="dwzGrid/AspAjaxDataGrid.asp" --> <!--#include file="Connections/cn_customerscorecard.asp" --> <% '****************************** 'http://www.DwZone-it.com 'AspAjax DataGrid 'Version 1.4.25 '****************************** Dim dwzGrid_1 Set dwzGrid_1 = new dwzAspAjaxDataGrid dwzGrid_1.Init() dwzGrid_1.SetInstance "1" dwzGrid_1.SetRootPath "" dwzGrid_1.SetCnString MM_None_STRING dwzGrid_1.SetEditPar "void|_@_|void|_@_||_@_|BrokerCode|_@_|ALL|_@_|false" dwzGrid_1.Add "brokerrank", "Broker Rank", "150", "String", "Center", "N", "N", "N|_@_|Y|_@_|50|_@_|3|_@_|TextBox|_@_||_@_||_@_||_@_||_@_||_@_||_@_|Void|_@_||_@_|false|_@_||_@_||_@_||_@_||_@_||_@_||_@_|20|_@_|12|_@_||_@_||_@_|None|_@_|rec_placeholder|_@_|Y|_@_|None|_@_|None|_@_|" dwzGrid_1.Add "brokername", "Name", "250", "String", "Left", "N", "N", "N|_@_|Y|_@_|50|_@_|3|_@_|TextBox|_@_||_@_||_@_||_@_||_@_||_@_||_@_|Void|_@_||_@_|false|_@_||_@_||_@_||_@_||_@_||_@_||_@_|20|_@_|12|_@_||_@_||_@_|None|_@_|rec_placeholder|_@_|Y|_@_|None|_@_|None|_@_|" dwzGrid_1.AddDetailPar "" dwzGrid_1.AddDetailFields "" dwzGrid_1.SaveDelete() %> <% '****************************** ' http://www.DwZone-it.com ' AspAjax DataGrid '****************************** dwzGridSkin = "black-tie" '****************************** ' http://www.DwZone-it.com ' AspAjax DataGrid '****************************** %> <% Dim rs_bootstraptest Dim rs_bootstraptest_cmd Dim rs_bootstraptest_numRows
Set rs_bootstraptest_cmd = Server.CreateObject ("ADODB.Command") rs_bootstraptest_cmd.ActiveConnection = MM_cn_customerscorecard_STRING rs_bootstraptest_cmd.CommandText = "SELECT * FROM tmj.BrokerScoreCard" rs_bootstraptest_cmd.Prepared = true
Set rs_bootstraptest = rs_bootstraptest_cmd.Execute rs_bootstraptest_numRows = 0 %> <% '****************************** ' http://www.DwZone-it.com ' AspAjax DataGrid ' Version 1.4.25 '****************************** dwzGrid_1.AddEditRecordset "brokerrank", Null dwzGrid_1.AddEditRecordset "brokername", Null dwzGrid_1.SetRecordset rs_bootstraptest dwzGrid_1.SetDetailRecordset Null dwzGrid_1.SetMainPar "400|_@_|250|_@_|void|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|15|_@_|10,15,20,25,40|_@_||_@_|Form|_@_|en|_@_|utf-8;65001;Unicode (UTF-8)|_@_|%|_@_|#|_@_||_@_|false|_@_|Required|_@_|Max length must be {1}|_@_|Text format|_@_|Date format|_@_|Min value must be {1}|_@_|Max value must be {1}|_@_|Not the first item|_@_|false|_@_||_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|,|_@_|No|_@_|false|_@_|root|_@_|row|_@_|Nodes|_@_|false|_@_|None;12;#000000;false;false;false;#FFFFFF|_@_|None;12;#000000;false;false;false;#FFFFFF;0;#000000;0,3|_@_|A4;L;25;25;25;25;false;Center;1|_@_|No|_@_||_@_||_@_||_@_|#000000|_@_|0.6|_@_|10|_@_|350|_@_|_s|_@_|false|_@_|None|_@_|<b>{0} - {1} Item(s)</b>|_@_|false|_@_|false|_@_|false|_@_|false|_@_|false|_@_|ASC|_@_|false|_@_|false|_@_||_@_||_@_||_@_||_@_|false|_@_|false|_@_|false|_@_|0|_@_|false|_@_|false|_@_||_@_||_@_||_@_|false" dwzGrid_1.CreateData() %> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Untitled Document</title> <!-- Bootstrap --> <link href="css/bootstrap.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]-->
<% '****************************** ' http://www.DwZone-it.com ' AspAjax DataGrid '****************************** dwzGrid_1.GetHeadCode() '****************************** ' AspAjax DataGrid '****************************** %> </head> <body> <% '****************************** ' http://www.DwZone-it.com ' AspAjax DataGrid '****************************** dwzGrid_1.CreateGrid() '****************************** ' http://www.DwZone-it.com ' AspAjax DataGrid '****************************** %> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="js/jquery-1.11.3.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed --> <script src="js/bootstrap.js"></script> </body> </html> <% rs_bootstraptest.Close() Set rs_bootstraptest = Nothing %> <% '****************************** ' http://www.DwZone-it.com ' AspAjax DataGrid '****************************** Set dwzGrid_1 = nothing %>
|
|
|