A script engine for the specified language can be not created

TFsoft2008 2008-08-26 09:26:47
大家好:
我重装系统后,运行一个VB编写的程序,就会提示 A script engine for the specified language can be not created。
以前没有这个提示的,不知道我哪个地方没弄好,望大家指教!
...全文
1911 4 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
极无宪 2011-06-28
  • 打赏
  • 举报
回复
是没有安装Microsoft Script Control,就他妈的我安装了Microsoft Script Control但是装好的时候可以用,重启一下电脑就不行了!!!!
smbsoft 2008-09-19
  • 打赏
  • 举报
回复
是程序里面有这句"ScpFomual.Language = "VBScript"",出错就在这个地方
smbsoft 2008-09-19
  • 打赏
  • 举报
回复
我今天也遇到这个问题,大家帮帮忙吧!我的里面有这句"ScpFomual.Language = "VBScript"",是不是没装什么字体?
bwu851 2008-08-27
  • 打赏
  • 举报
回复
好象是某些setting有错, 帮你顶吧.
Twitter Digg Facebook Del.icio.us Reddit Stumbleupon Newsvine Technorati Mr. Wong Yahoo! Google Windows Live Send as Email Add to your CodeProject bookmarks Discuss this article 85 Print Article Database » Database » Other databasesLicence CPOL First Posted 19 Jan 2012 Views 24,219 Downloads 992 Bookmarked 74 times RaptorDB - The Key Value Store V2 By Mehdi Gholam | 8 Mar 2012 | Unedited contribution C#.NETDBABeginnerIntermediateAdvanceddatabase Even faster Key/Value store nosql embedded database engine utilizing the new MGIndex data structure with MurMur2 Hashing and WAH Bitmap indexes for duplicates. See Also More like this More by this author Article Browse Code Stats Revisions (8) Alternatives 4.95 (56 votes) 1 2 3 4 5 4.95/5 - 56 votes μ 4.95, σa 1.05 [?] Is your email address OK? You are signed up for our newsletters but your email address is either unconfirmed, or has not been reconfirmed in a long time. Please click here to have a confirmation email sent so we can confirm your email address and start sending you newsletters again. Alternatively, you can update your subscriptions. Add your own alternative version Introduction What is RaptorDB? Features Why another data structure? The problem with a b+tree Requirements of a good index structure The MGIndex Page Splits Interesting side effects of MGIndex The road not taken / the road taken and doubled back! Performance Tests Comparing B+tree and MGIndex Really big data sets! Index parameter tuning Performance Tests - v2.3 Using the Code Differences to v1 Using RaptorDBString and RaptorDBGuid Global parameters RaptorDB interface Non-clean shutdowns Removing Keys Unit tests File Formats File Format : *.mgdat File Format : *.mgbmp File Format : *.mgidx File Format : *.mgbmr , *.mgrec History Download RaptorDB_v2.0.zip - 38.7 KB Download RaptorDB_v2.1.zip - 39 KB Download RaptorDB_v2.2.zip - 39 KB Download RaptorDB_v2.3.zip - 39.6 KB D
JSP Simple Examples Index 1. Creating a String In jsp we create a string as we does in a java. In jsp we can declare it inside the declaration directive or a scriptlet directive. String Length In java, Strings are objects that belong to class java.lang.String. A string is a sequence of simple characters. We can get the length of the string by using the method length() of java.lang.String. Declaring string array in java An array is the collection of same data type. Suppose if we have a declare an array of type String, then it will store only the String value not any other data type. When we have a closely related data of the same type and scope, it is better to declare it in an array. Multidimensional array java A two dimensional array can be thought as a grid of rows and columns. The first array will reflect to a row and the second one is column. int array Array is a collection of same data type. Suppose if we have declared an array of type int then the array will take only the int values and not any other data types. We can find find out the length of the variable by using the variable length . JSP string array String array cannot hold numbers or vice- versa. Arrays can only store the type of data specified at the time of declaring the array variable. Custom exceptions Custom Exception inherits the properties from the Exception class. Whenever we have declare our own exceptions then we call it custom exceptions. Throwing an exception All methods use the throw statement to throw an exception. The throw statement requires a single argument a throwable object. Here is an example of a throw statement. Arrayindexoutofboundsexception ArrayIndexOutOfBoundException is thrown when we have to indicate that an array has been accessed with an illegal index. printStackTrace in jsp printStackTrace is a method of the Throwable class. By using this method we can get more information about the error process if we print a stack trace from the exception. Runtime Errors Errors are arised when there is any logic problem with the logic of the program. Try catch in jsp In try block we write those code which can throw exception while code execution and when the exception is thrown it is caught inside the catch block. Multiple try catch We can have more than one try/catch block. The most specific exception which can be thrown is written on the top in the catch block following by the less specific least. Nested try catch We can declare multiple try blocks inside the try block. The most specific exception which can be thrown is written on the top in the catch block following by the less specific least. kilometers per liter to miles per gallon Kilometers per liter : The distance traveled by a vehicle which is running on gasoline or diesel fuel in a kilometer. Miles per Gallon: The distance traveled by a vehicle which is running on gasoline or diesel fuel in a mile. Ascii values table ASCII stands for American Standard Code for Information Interchange. Computers can only understand numbers, so an ASCII code is the numerical representation of a character such as @, #, $, and so on. ASCII was developed when non- printing characters were rarely used. life cycle of a jsp page Life of the the jsp page is just same as the servlet life cycle. After get translated the jsp file is just like a servlet. Page directive attributes A directive is a way to give special instructions to the container at page translation time. The page directive is written on the top of the jsp page. Html tags in jsp In this example we have used the html tag inside the println() method of the out implicit object which is used to write the content on the browser. Password Controls In this program we are going to know how the server determines whether the password entered by the user is correct or not. This whole process is controlled on the server side. Multiple forms in jsp The form tag creates a form for user input. A form can contain checkboxes, textfields, radio- buttons and many more. Forms are used to pass user- data to a specified URL which is specified in the action attribute of the form tag. Interface in jsp In interface none of its methods are implemented. All the methods are abstract. There is no code associated with an interface. In an interface all the instance methods are public and abstract. Interfaces are always implemented in the class. They add extra behaviors to the class. Inheritance in java with example Inheritance is one of the concept of the Object- Oriented programming. It allows you to define a general class, and later more specialized classes by simply adding some new details. Constructor inheritance Constructors are used to create objects from the class. Constructor declaration are just like method declaration, except that they do not have any return type and they use the name of the class. The compiler provides us with a default constructor to the class having no arguments. Abstract classes We does not make a object of the abstract class. This class must be inherited. Unlike interface the abstract class may implement some of the methods defined in the class, but in this class at least one method should be abstract. Using Super class Variables With Sub-classed Objects One of the strong features of java is that it is follows a OOPs concept, and one of the feature of OOP in java is that, we can assign a subclass object or variable to the variable of the superclass type. Log files Log files keeps a records of internet protocol addresses (IP), Http status, date, time, bytes sent, bytes recieved, number of clicks etc. Calculate a factorial by using while loop In this example we are going to find out the factorial of 12 by using the while loop. In while loop the loop will run until the condition we have given gets true. Calculating factorial After going through this example you will be understand how you can calculate the factorial by using recursion in jsp. To make a program on factorial, firstly it must be clear what is recursion. Celsius Fahrenheit Celsius is a unit to measure temperature scale on which water freezes at 0 degree and boiling point is 100 degree. This unit is discovered by Celsius in 1742, a Swedish astronomer and physicist, he has invented the centigrade, or Celsius thermometer divided between the freezing and boiling points of water into 100 parts. comment in jsp In a jsp we should always try to use jsp- style comments unless you want the comments to appear in the HTML. Jsp comments are converted by the jsp engine into java comments in the source code of the servlet that implements the Jsp page. Html tag inside out implicit object In this program we are going to use a html tag inside a out object. out object is used to display the content on the browser. To make this program run use out object inside which define some html code along with the content you want to display on the browser Jsp methods In this example we are going to show you how we can declare a method and how we can used it. In this example we are making a method named as addNum(int i, int b) which will take two numbers as its parameters and return integer value. Multiple methods Jsp is used mainly for presentation logic. In the jsp we can declare methods just like as we declare methods in java classes. Methods can be declared in either declaration directive or we can declare it in scriptlet. If we declare method inside declaration directive, then the method is applicable in the whole page. Passing Array method Array is a collection of similar data type. It is one of the simplest data structures. Arrays holds equally sized data elements generally of the similar data type. Two index In this example we will show how we can use two indexes in a for loop. We can solve this problem by using for loop defined inside the scriptlet directive. Date in JSP To print a Date in JSP firstly we are importing a class named java.util.Date of the package java.util. This package is imported in the jsp page so that the Date class and its properties can accessed in the JSP page. If- Else Ladder A ladder means a vertical set of steps. It is a computer generated list of pairings used in eliminations. Nested If We use the if condition to check if the particular condition is true then it should perform a certain task, and if a particular condition is not true then it should do some other tasks. Quintessential JSP Quintessential means representing the perfect example of a class or quality. It is pure and concentrated essence of a substance. Include File JSP using directive and include action <%@ include file = " "%>: - This is include directive. This directive has only one attribute named as file, which is used to include a file in the jsp page at the translation time. :- This is known as the include standard action. This standard action is used to include a file at run time. This standard action is evaluated at the run time. Snoop in JSP It mostly contains the request information, ServletContext initialization parameters, ServetContext attributes, request headers, response headers etc. sendRedirect In JSP sendRedirect() method is a method of HttpServletResponse interface. In sendRedirect() the object of request will be generated again with the location of page which will perform the request of the client. Request Header in JSP Whenever an http client sends a request, it sends the request in the form of get or post method or any other HttpRequest methhods. It can also sends the headers with it. Specific request headers in JSP Whenever an http client sends a request, it can also sends the headers with it. All the headers are optional except Content-length, which is required only for POST request. Java class in JSP To use the class inside the jsp page we need to create an object of the class by using the new operator. At last use the instance of the class to access the methods of the java file. Setting Colors in JSP In Jsp also we can set the background color which we want, the font color can be changed. The table can be coloured . By using the colors code we can give colors according to our wish. Sine Table in JSP Mathematically, the sine of an angle is the ratio of the length of the opposite side to the length of the hypotenuse of an imaginary right triangle having that angle in it. Applet In Jsp Applets are small programs or applications written in java. These applets are those small programs that runs on web browsers, usually written in java. We can use the applets in jee also. In jee it runs on the context of web application on a client computer. Creating a Local Variable in JSP Consider a situation where we have to declare a variable as local, then we should declare the methods and variables in tag except the declaration directive. Method in Declaration Tag Anything which will be declared inside declaration tag will be applicable within the whole application. We call this tag a Declaration Tag. The syntax of this tag is <%! --------- %>. Forward a JSP Page The request object goes to the controller then the controller decides by which jsp or servlet this request will be processed, then the request object is passed to that jsp or servlet and the output is displayed to the browser by the response object. Random in JSP Random numbers are the numbers that are determined entirely by chance. User does not have any control over the working of random numbers. random() is a method of Math class which extends java.lang package. JSP include directive By using the include tag the file will be included in the jsp page at the translation time. In this example we have created a jsp file which has to be included in the other jsp file by using the tag <%@ include file = " "%>. Literals in JSP Literals are the values, such as a number or a text string, that are written literally as part of a program code. A literal is a expression of a value, including a number or a text string. Passing Parameter using Request parameters can be passed by using . This tag contains two attributes: 1) name 2) value. Tag Handler Custom tags are usually distributed in the form of a tag library, which defines a set of related custom tags and contains the objects that implement the tags. Custom tag libraries allow the java programmer to write code that provides data access and other services, and they make those features available to the jsp author in a simple to use XML- like fashion. UseBean Syntax: FastReport.v4.15 for.Delphi.BCB.Full.Source企业版含ClientServer中文修正版支持Delphi 4-XE5 and C++Builder 6-XE5. D2010以上版本(D14_D19)安装必读 delphi2010以上版本(D14_D19)使用者安装时,请将res\frccD14_D19.exe更名名为frcc.exe frccD14_D19.exe是专门的delphi2010以上版本(D14_D19)编码器。其他低delphi版本,请使用frcc.exe FastReport® VCL is an add-on component that allows your application to generate reports quickly and efficiently. FastReport® provides all the tools necessary for developing reports, including a visual report designer, a reporting core, and a preview window. It can be used in Embarcadero (ex Borland and CodeGear) Delphi 4-XE5 and C++Builder 6-XE5. version 4.15 --------------- + Added Embarcadero RAD Studio XE5 support + Added Internal components for FireDac database engine + fixed bug with images in PDF export for OSX viewers + Added ability to set font charset to default in Style Editor - fixed duplex problem when printing several copies of the report - fixed problem with PNG images - fixed problem with TfrxPictureView transparent version 4.14 --------------- + Added Embarcadero RAD Studio XE4 support - [Lazarus] fixed bug with text output - [Lazarus] fixed bug with some visual controls in designer - [Lazarus] improved interface of the report preview and designer - [Lazarus] fixed bug with boolean propertyes in script code and expressions - fixed bug with endless loop in TfrxRichView - fixed bug with Unicode in TfrxMemoView appeared in previous release - improved MAPI interface in TfrxExportMail export - fixed some problems with allpication styles XE2/XE3 - improved compatibility with Fast Report FMX version 4.13 --------------- + Added Lazarus Beta support starts from Fast Report Professionnal edition. Current version allows preview, print and design report template under Windows and Linux platform (qt). + Added Embarcadero RAD Studio XE3 support - fixed compatibility with Fast Report FMX installed in the same IDE. This version can co exist with Fast Report FMX version at the same time. + published "Quality" property of TfrxPDFExport object + published "UseMAPI" property of TfrxExportMail object + published "PictureType" property to ODF export - fixed bug with expressions in RichEdit - fixed bug in multi-column reports - fixed exception in the report designer - fixed bug with URLs in Open Document Text and Open Document Spreadsheet exports - fixed format string in XLS OLE export - fixed format string in XLS BIFF8 export - fixed output of the check boxes on the highlighted lines in PDF export - fixed bug with PDF anchors - fixed bug when using two or more macroses in memo version 4.12 --------------- + added support of Embarcadero Rad Studio EX2 (x32/x64) + added export of Excel formulas in the BIFF export + added export of external URLs in the PDF export + added converter from Rave Reports ConverterRR2FR.pas + added Cross.KeepRowsTogether property + optimised merging cells in the BIFF export + added property DataOnly to exports + pictures format in all exports switched to PNG + improved number formats processing in the BIFF export + added property DataOnly to exports + added property TfrxODFExport.SingleSheet + added property TfrxSimpleTextExport.DeleteEmptyColumns + added property TfrxBIFFExport.DeleteEmptyRows + added progress bar to the BIFF export - fixed bug with frame for some barcode types - fixed wrong metafiles size in the EMF export - fixed processing of negative numbers in the OLE export - fixed bug in handling exceptions in the OLE export - fixed bug in creation of the progress bar (applicable to many exports) - fixed bug in the ODF export in strings processing - fixed bug in the OLE export in numbers formatting - fixed bug in the PDF export in rotating texts 90, 180 and 270 degrees - fixed bug in the ODF export in processing of headers and footers - fixed bug in the Text export in computing object bounds - fixed bug in the ODF export in UTF8 encoding - fixed hiding gridlines around nonempty cells in the BIFF export - fixed images bluring when exporting - fixed word wrapping in the Excel XML export version 4.11 --------------- + added BIFF8 XLS export filter + added to ODF export the Language property + [enterprise] added "scripts" folder for additional units ("uses" directive in report script) + [enterprise] added logs for scheduler (add info in scheduler.log) + [enterprise] added property "Reports" - "Scripts" in server configuration - set the path for "uses" directive in report script + [enterprise] added property "Http" - "MaxSessions" in server configuration - set the limit of maximum session threads, set 0 for unlimit + [enterprise] added property "Reports" - "MaxReports" in server configuration - set the limit of maximum report threads, set 0 for unlimit + [enterprise] added property "Logs" - "SchedulerLog" in server configuration - set the scheduler log file name + [enterprise] added property "Scheduler" - "Active" in server configuration - enable of scheduler + [enterprise] added property "Scheduler" - "Debug" in server configuration - enable writing of debug info in scheduler log + [enterprise] added property "Scheduler" - "StudioPath" in server configuration - set the path to FastReport Studio, leave blank for default - [enterprise] fixed bug with MIME types in http header (content-type) - [enterprise] fixed bug with default configuration (with missed config.xml) - [enterprise] fixed bug with error pages - fixed bug in XML export with the ShowProgress property - fixed bug in RTF export with font size in empty cells - fixed bug in ODF export with UTF8 encoding of the Creator field - fixed bug in XML export with processing special characters in strings - fixed bug in ODF export with properties table:number-columns-spanned, table:number-rows-spanned - fixed bug in ODF export with the background clNone color - fixed bug in ODF export with a style of table:covered-table-cell - fixed bug in ODF export with table:covered-table-cell duplicates - fixed bug in ODF export with excessive text:p inside table:covered-table-cell - fixed bug in ODF export with language styles - fixed bug in ODF export with spaces and tab symbols - fixed bug in ODF export with styles of number cells - fixed bug in ODF export with the background picture - fixed bug in ODF export with charspacing - fixed bug in ODF export with number formatting - fixed bug in ODF export with table-row tag - fixed bug in XLS(OLE) export with numbers formatting - fixed bug in RTF export with processing RTF fields - fixed bug with processing special symbols in HTML Export - fixed bug with UTF8 encoding in ODF export - fixed bug in PDF export with underlined, struck-out and rotated texts version 4.10 --------------- + added support of Embarcadero Rad Studio XE (Delphi EX/C++Builder EX) + added support of TeeChart 2010 packages (new series type aren't support in this release) + added a property TruncateLongTexts to the XLS OLE export that allows to disable truncating texts longer than a specified limit + added option EmbedProt which allows to disable embedding fonts into an encrypted PDF file + added TfrxDateEditControl.WeekNumbers property - fixed bug in XML and PDF exports with Korean charmap - fixed bug in the XLS XML export about striked-out texts - fixed bug about exporting an empty page via the XLS OLE export - fixed bug in the PDF export about coloring the background of pages - fixed bug in embedded designer when using break point in script - fixed bug with lost of focus in font size combo-box in designer - fixed bug with truncate of font size combo-box in Windows Vista/7 in designer (lost of vertical scroll bar) - fixed bug when lost file name in inherited report - fixed bug in multi-page report with EndlessHeight/EndlessWidth - fixed bug wit TfrxHeader.ReprintOnNewpage and KeepTogether - fixed bug in multi-column report with child bands - improved split mechanism (added TfrxStretcheable.HasNextDataPart for complicated data like RTF tables) - improved crosstab speed when using repeat band with crosstab object version 4.9 --------------- + added outline to PDF export + added anchors to PDF export - fixed bug with embedded TTC fonts in PDF export + added an ability to create multiimage TIFF files + added export headers/footers in ODF export + added ability to print/export transparent pictures (properties TfrxPictureView.Transparent and TfrxPictureView.TransparentColor) (PDF export isn't supported) + added new "split to sheet" modes for TfrxXMLExport + added support of /PAGE tag in TfrxRichView, engine automatically break report pages when find /PAGE tag + added ability to hide Null values in TfrxChartView (TfrxChartView.IgnoreNulls = True) + added ability to set any custom page order for printing (i.e. 3,2,1,5,4 ) + [enterprise] added variables "AUTHLOGIN" and "AUTHGROUP" inside the any report + [enterprise] now any report file can be matched with any (one and more) group, these reports are accessible only in matched groups + [enterprise] now you can set-up cache delays for each report file (reports.xml) + [enterprise] added new properties editor for reports in Configuration utility (see Reports tab) + [enterprise] added property "Xml" - "SplitType" in server configuration - allow to select split on pages type between none/pages/printonprev/rowscount + [enterprise] added property "Xml" - "SplitRowsCount" in server configuration - sets the count of rows for "rowscount" split type + [enterprise] added property "Xml" - "Extension" in server configuration - allow select between ".xml" and ".xls" extension for output file + [enterprise] added property "Html" - "URLTarget" in server configuration - allow select the target attribute for report URLs + [enterprise] added property "ReportsFile" - path to file with reports to groups associations and cache delays + [enterprise] added property "ReportsListRenewTimeout" in server configuration + [enterprise] added property "ConfigRenewTimeout" in server configuration + [enterprise] added property "MimeType" for each output format in server configuration + [enterprise] added property "BrowserPrint" in server configuration - allow printing by browser, added new template nav_print_browser.html + [enterprise] added dynamic file name generation of resulting formats (report_name_date_time) * [enterprise] SERVER_REPORTS_LIST and SERVER_REPORTS_HTML variables (list of available reports) depend from user group (for internal authentification) + added drawing shapes in PDF export (not bitmap) + added rotated text in PDF export (not bitmap) + added EngineOptions.IgnoreDevByZero property allow to ignore division by zero exception in expressions + added properties TfrxDBLookupComboBox.DropDownWidth, TfrxDBLookupComboBox.DropDownRows + added event TfrxCustomExportFilter.OnBeginExport + added ability to decrease font size in barcode object + added ability to inseret FNC1 to "code 128" barcode + added event TfrxPreview.OnMouseDown + added support of new unicode-PDF export in D4-D6 and BCB4-BCB6 * improved AddFrom method - anchor coping - fixed bug with WordWrap in PDF export - fixed bug with underlines in PDF export - fixed bug with rounded rectangles in PDF export - fixed CSV export to fit to the RFC 4180 specification - fixed bug with strikeout text in PDF export - fixed bug with incorrect export of TfrxRichView object in RTF format (wrong line spacing) - [enterprise] added critical section in TfrxServerLog.Write - fixed bug with setting up of the Protection Flags in the PDF export dialog window - fixed bug in PDF export (file structure) - fixed bug with pictures in Open Office Writer (odt) export - [enterprise] fixed bug with TfrxReportServer component in Delphi 2010 - fixed minor errors in Embarcedero RAD Studio 2010 - fixed bug with endless loop with using vertical bands together with page header and header with ReprintOnNewPage - fixed bug when using "Keeping" and Cross tables (incorrect cross transfer) - fixed bug with [CopyName#] macros when use "Join small pages" print mode - fixed bug when try to split page with endless height to several pages (NewPage, StartNewPage) - fixed bug with empty line TfrxRichView when adding text via expression - fixed bug when Footer prints even if main band is invisible (FooterAfterEach = True) - fixed resetting of Page variable in double-pass report with TfrxCrossView - fixed bug with loosing of aligning when split TfrxRichView - fixed buzz in reports with TfrxRichView when using RTF 4.1 version 4.8 --------------- + added support of Embarcadero Rad Studio 2010 (Delphi/C++Builder) + added TfrxDBDataset.BCDToCurrency property + added TfrxReportOptions.HiddenPassword property to set password silently from code + added TfrxADOConnection.OnAfterDisconnect event + added TfrxDesigner.MemoParentFont property + added new TfrxDesignerRestriction: drDontEditReportScript and drDontEditInternalDatasets + adedd checksum calculating for 2 5 interleaved barcode + added TfrxGroupHeader.ShowChildIfDrillDown property + added TfrxMailExport.OnSendMail event + added RTF 4.1 support for TfrxRichText object + [enterprise] added Windows Authentification mode + added confirmation reading for TfrxMailExport + added TimeOut field to TfrxMailExport form + added ability to use keeping(KeepTogether/KeepChild/KeepHeader) in multi-column report + added ability to split big bands(biggest than page height) by default * [enterprise] improved CGI for IIS/Apache server * changed PDF export (D7 and upper): added full unicode support, improved performance, decreased memory requirements old PDF export engine saved in file frxExportPDF_old.pas - changed inheritance mechanism, correct inherits of linked objects (fixups) - fixed bug with Mirror Mrgins in RTF, HTML, XLS, XML, OpenOffice exports - fixed bug when cross tab cut the text in corner, when corner height greater than column height - [fs] improved script compilation - improved WatchForm TListBox changet to TCheckListBox - improved AddFrom method - copy outline - Improved functional of vertical bands, shows memos placed on H-band which doesn't across VBand, also calculate expression inside it and call events (like in FR2) - Improved unsorted mode in crosstab(join same columns correctly) - Improved converter from Report Builder - Improved TfrxDesigner.OnInsertObject, should call when drag&drop field from data tree - improved DrillDownd mechanism, should work correct with master-detail-subtetail nesting - fixed bug with DownThenAcross in Cross Tab - fixed several bugs under CodeGear RAD Studio (Delphi/C++Builder) 2009 - fixed bug with emf in ODT export - fixed bug with outline when build several composite reports in double pass mode - fixed bug when group doesn't fit on the whole page - fixed "Page" and "Line" variables inside vertical bands - fixed bug with using KeepHeader in some cases - fixed bug with displacement of subreport when use PrintOnParent property in some cases - fixed small memory leak in subreports - fixed problem with PageFooter and ReportSymmary when use PrintOnPreviousPage property - fixed bug when designer shows commented functions in object inspector - fixed bug when designer place function in commented text block - fixed bug when Engine try to split non-stretcheable view and gone to endless loop - fixed bug with HTML tags in memo when use shot text and WordWrap - [enterprise] fixed bug with variables lost on refresh/export - fixed bug whih PDF,ODT export in Delphi4 and CBuilder4 - fixed bug with some codepage which use two bytes for special symbols (Japanese ans Chinese codepages) - fixed bug when engine delete first space from text in split Memo - fixed bug in multi-column page when band overlap stretched PageHeader - fixed bug with using ReprintOnNewPage version 4.7 --------------- + CodeGear RAD Studio (Delphi/C++Builder) 2009 support + [enterprise] enchanced error description in logs + added properties TfrxHTMLExport.HTMLDocumentBegin: TStrings, TfrxHTMLExport.HTMLDocumentBody: TStrings, TfrxHTMLExport.HTMLDocumentEnd: TStrings + improved RTF export (with line spacing, vertical gap etc) + added support of Enhanced Metafile (EMF) images in Rich Text (RTF), Open Office (ODS), Excel (XLS) exports + added OnAfterScriptCompile event + added onLoadRecentFile Event + added C++ Builder demos + added hot-key Ctrl + mouseWheel - Change scale in designer + added TfrxMemoView.AnsiText property - fixed bug in RTF export with EMF pictures in OpenOffice Writer - fixed some multi-thread isuues in engine, PDF, ODF exports - [enterprise] fixed integrated template of report navigator - [enterprise] fixed bug with export in Internet Explorer browser - fixed bug with font size of dot-matix reports in Excel and XML exports - fixed bug in e-mail export with many addresses - fixed bug in XLS export (with fast export unchecked and image object is null) - [enterprise] fixed bug in TfrxReportServer.OnGetVariables event - fixed bug in Calcl function - fixed memory leak in Cross editor - fixed progress bar and find dialog bug in DualView - fixed bug in PostNET and ean13 barcodes - fixed bug with TruncOutboundText in Dot Matrix report - fixed bugs with break points in syntaxis memo - improved BeforeConnect event in ADO - fixed bug in inhehited report with internal dataset - fixed bug in TfrxPanelControl with background color(Delphi 2005 and above) version 4.6 --------------- + added & , < , > to XML reader + added tag, the text concluded in tag is not broken by WordWrap, it move entirely + added ability to move band without objects (Alt + Move) + added ability to output pages in the preview from right to left ("many pages" mode), for RTL languages(PreviewOptions.RTLPreview) + added ability to storing picture cache in "temp" file (PreviewOptions.PictureCacheInFile) + added EngineOptions.UseGlobalDataSetList (added for multi-thread applications) - set it to False if you don't want use Global DataSet list(use Report.EnabledDataSet.Add() to add dataset in local list) + added new property Hint for all printed objects, hints at the dialog objects now shows in StatusBar + added new property TfrxDBLookupComboBox.AutoOpenDataSet (automatically opens the attached dataset after onActivate event) + added new property TfrxReportPage.PageCount like TfrxDataBand.RowCount + added new property WordWrap for dialog buttons (Delphi 7 and above). + added sort by name to data tree + added TfrxDesigner.TemplatesExt property + added TfrxStyles class in script rtti + changes in the Chart editor: ability to change the name of the series, ability to move created series, other small changes + [enterprise] added configurations values refresh in run-time + [enterprise] added new demo \Demos\ClientServer\ISAPI + [enterprise] added output to server printers from user browser (see config.xml "AllowPrint", set to "no" by default), note: experimental feature + [enterprise] added reports list refresh in run-time + [enterprise] added templates feature + [enterprise] improved speed and stability + [fs] added TfsScript.IncludePath property + [fs] added TfsScript.UseClassLateBinding property + [fs] fixed type casting from variant(string) to integer/float - changes in report inherit: FR get relative path from current loaded report(old reports based on application path works too) - corrected module for converting reports from Report Builder - fixed bug in CrossTab when set charset different from DEFAULT_CHARSET - fixed bug in RTF export with some TfrxRichView objects - fixed bug when print on landscape orientation with custom paper size - fixed bug when use network path for parent report - fixed bug with Band.Allowslit = True and ColumnFooter - fixed bug with drawing subreport on stretched band - fixed bug with embedded fonts in PDF export - fixed bug with long ReportTitle + Header + MaterData.KeepHeader = true - fixed bug with minimizing of Modal designer in BDS2005 and above - fixed bug with paths in HTML export - fixed bug with RTL in PDF export - fixed bug with SubReport in multi column page - fixed bug with Subreport.PrintOnParent = true in inherited report - fixed bug with SYMBOL_CHARSET in PDF export - fixed bug with the addition of datasets by inheritance report - fixed bug with width calculation when use HTML tags in memo - fixed compatibility with WideStrings module in BDS2006/2007 - fixed flicking in preview when use OnClickObject event - fixed free space calculation when use PrintOnPreviousPage - fixed preview bug with winXP themes and in last update - fixed subreports inherit - Thumbnail and Outline shows at right side for RTL languages - [fs] fixed bug with late binding version 4.5 --------------- + added ConverterRB2FR.pas unit for converting reports from Report Builder to Fast Report + added ConverterQR2FR.pas unit for converting reports from QuickReport to FastReport + added support of multiple attachments in e-mail export (html with images as example) + added support of unicode (UTF-8) in e-mail export + added ability to change templates path in designer + added OnReportPrint script event + added PNG support in all version (start from Basic) + added TfrxDMPMemoView.TruncOutboundText property - truncate outbound text in matrix report when WordWrap=false + added new frames styles fsAltDot and fsSquare + added new event OnPreviewDblClick in all TfrxView components + added ability to call dialogs event after report run when set DestroyForms = false + added ability to change AllowExpressions and HideZeros properties in cross Cells (default=false) + added IgnoreDupParams property to DB components + added auto open dataset in TfrxDBLookupComboBox + added new property TfrxADOQuery.LockType + added define DB_CAT (frx.inc) for grouping DB components + added TfrxPictureView.HightQuality property(draw picture in preview with hight quality, but slow down drawing procedure) + [FRViewer] added comandline options "/print filename" and "/silent_print filename" + added unicode input support in RichEditor + added new define HOOK_WNDPROC_FOR_UNICODE (frx.inc) - set hook on GetMessage function for unicode input support in D4-D7/BCB4-BCB6 + added ability chose path to FIB packages in "Recompile Wizard" + added new function TfrxPreview.GetTopPosition, return a position on current preview page + added new hot-keys to Code Editor - Ctrl+Del delete the word before cursor, Ctrl+BackSpace delete the word after cursor(as in Delhi IDE) + added "MDI Designer" example - all language resources moved to UTF8, XML - fixed bug with html tags [sup] and [sub] - fixed width calculation in TfrxMemoView when use HTML tags - fixed bug with suppressRepeated in Vertical bands - fixed bug when designer not restore scrollbars position after undo/redo - fixed visual bug in toolbars when use Windows Vista + XPManifest + Delphi 2006 - fixed bug in CalcHeight when use negative LineSpace - fixed bug in frx2xto30 when import query/table components, added import for TfrDBLookupControl component - fixed bug with Cross and TfrxHeader.ReprintOnNewPage = true - fixed converting from unicode in TfrxMemoView when use non default charset - [fs] fixed bug with "in" operator - fixed bug with aggregate function SUM - fixed bug when use unicode string with [TotalPages#] in TfrxMemoView - fixed bug with TSQLTimeStampField field type - fixed designer dock-panels("Object Inspector", "Report Tree", "Data Tree") when use designer as MDI or use several non-modal designer windows - fixed bug with hide/show dock-panels("Object Inspector", "Report Tree", "Data Tree"), now it restore size after hiding - fixed bug in XML/XLS export - wrong encode numbers in memo after CR/LF - fiexd bug in RTF export - fixed bug with undo/redo commands in previewPages designer - fixed bug with SuppressRepeated when use KeepTogether in group - fixed bug with SuppressRepeated on new page all events fired twice(use Engine.SecondScriptcall to determinate it) version 4.4 --------------- + added support for CodeGear RAD Studio 2007 + improved speed of PDF, HTML, RTF, XML, ODS, ODT exports + added TfrxReportPage.BackPictureVisible, BackPicturePrintable properties + added rtti for the TfrxCrossView.CellFunctions property + added properties TfrxPDFExport.Keywords, TfrxPDFExport.Producer, TfrxPDFExport.HideToolbar, TfrxPDFExport.HideMenubar, TfrxPDFExport.HideWindowUI, TfrxPDFExport.FitWindow, TfrxPDFExport.CenterWindow, TfrxPDFExport.PrintScaling + added ability recompile frxFIB packages in "recompile wizard" + added ability to set color property for all teechart series which support it + added, setting frame style for each frame line in style editor + added TfrxPreview.Locked property and TfrxPreview.DblClick event + added 'invalid password' exception when load report without crypt + added new parameter to InheritFromTemplate (by default = imDefault) imDefault - show Error dialog, imDelete - delete duplicates, imRename - rename duplicates + added property TfrxRTFExport.AutoSize (default is "False") for set vertical autosize in table cells * redesigned dialog window of PDF export * improved WYSIWYG in PDF export - fixed bug, the PageFooter band overlap the ReportSummary band when use EndlessHeight - fixed bug with lage paper height in preview - fixed bug with outline and encryption in PDF export - fixed bug with solid arrows in PDF export - fixed bug when print TfrxHeader on a new page if ReprintOnNewPage = true and KeepFooter = True - fixed bug when used AllowSplit and TfrxGroupHeader.KeepTogether - fixed page numbers when print dotMatrix report without dialog - fixed bug with EndlessHeight in multi-columns report - fixed font dialog in rich editor - [fs] fixed bug when create TWideStrings in script code - fixed bug with dialog form when set TfrxButtonControl.Default property to True - fixed twice duplicate name error in PreviewPages designer when copy - past object - fixed bug with Preview.Clear and ZmWholePage mode - fixed bug with using "outline" together "embedded fonts" options in PDF export - fixed multi-thread bug in PDF export - fixed bug with solid fill of transparent rectangle shape in PDF export - fixed bug with export OEM_CODEPAGE in RTF, Excel exports - fixed bug with vertical size of single page in RTF export - fixed bug with vertical arrows in PDF export - fixed memory leak with inherited reports version 4.3 --------------- + added support for C++Builder 2007 + added encryption in PDF export + added TeeChart Pro 8 support + added support of OEM code page in PDF export + added TfrxReport.CaseSensitiveExpressions property + added "OverwritePrompt" property in all export components + improved RTF export (WYSIWYG) + added support of thai and vietnamese charsets in PDF export + added support of arrows in PDF export * at inheritance of the report the script from the report of an ancestor is added to the current report (as comments) * some changes in PDF export core - fixed bug with number formats in Open Document Spreadsheet export - fixed bug when input text in number property(Object Inspector) and close Designer(without apply changes) - fixed bug in TfrxDBDataset with reCurrent - fixed bug with memory leak in export of empty outline in PDF format - line# fix (bug with subreports) - fixed bug with edit prepared report with rich object - fixed bug with shadows in PDF export - fixed bug with arrows in designer - fixed bug with margins in HTML, RTF, XLS, XML exports - fixed bug with arrows in exports - fixed bug with printers enumeration in designer (list index of bound) - fixed papersize bug in inherited reports version 4.2 --------------- + added support for CodeGear Delphi 2007 + added export of html tags in RTF format + improved split of the rich object + improved split of the memo object + added TfrxReportPage.ResetPageNumbers property + added support of underlines property in PDF export * export of the memos formatted as fkNumeric to float in ODS export - fixed bug keeptogether with aggregates - fixed bug with double-line draw in RTF export - fix multi-thread problem in PDF export - fixed bug with the shading of the paragraph in RTF export when external rich-text was inserted - fixed bug with unicode in xml/xls export - fixed bug in the crop of page in BMP, TIFF, Jpeg, Gif - "scale" printmode fixed - group & userdataset bugfix - fixed cross-tab pagination error - fixed bug with round brackets in PDF export - fixed bug with gray to black colors in RTF export - fixed outline with page.endlessheight - fixed SuppressRepeated & new page - fixed bug with long time export in text format - fixed bug with page range and outline in PDF export - fixed undo in code window - fixed error when call DesignReport twice - fixed unicode in the cross object - fixed designreportinpanel with dialog forms - fixed paste of DMPCommand object - fixed bug with the export of null images - fixed code completion bug - fixed column footer & report summary problem version 4.1 --------------- + added ability to show designer inside panel (TfrxReport.DesignReportInPanel method). See new demo Demos\EmbedDesigner + added TeeChart7 Std support + [server] added "User" parameter in TfrxReportServer.OnGetReport, TfrxReportServer.OnGetVariables and TfrxReportServer.OnAfterBuildReport events + added Cross.KeepTogether property + added TfrxReport.PreviewOptions.PagesInCache property - barcode fix (export w/o preview bug) - fixed bug in preview (AV with zoommode = zmWholePage) - fixed bug with outline + drilldown - fixed datasets in inherited report - [install] fixed bug with library path set up in BDS/Turbo C++ Builder installation - fixed pagefooter position if page.EndlessWidth is true - fixed shift bug - fixed design-time inheritance (folder issues) - fixed chm help file path - fixed embedded fonts in PDF - fixed preview buttons - fixed bug with syntax highlight - fixed bug with print scale mode - fixed bug with control.Hint - fixed edit preview page - fixed memory leak in cross-tab version 4.0 initial release --------------------- Report Designer: - new XP-style interface - the "Data" tab with all report datasets - ability to draw diagrams in the "Data" tab - code completion (Ctrl+Space) - breakpoints - watches - report templates - local guidelines (appears when you move or resize an object) - ability to work in non-modal mode, mdi child mode Report Preview: - thumbnails Print: - split a big page to several small pages - print several small pages on one big - print a page on a specified sheet (with scale) - duplex handling from print dialogue - print copy name on each printed copy (for example, "First copy", "Second copy") Report Core: - "endless page" mode - images handling, increased speed - the "Reset page numbers" mode for groups - reports crypting (Rijndael algorithm) - report inheritance (both file-based and dfm-based) - drill-down groups - frxGlobalVariables object - "cross-tab" object enhancements: - improved cells appearance - cross elements visible in the designer - fill corner (ShowCorner property) - side-by-side crosstabs (NextCross property) - join cells with the same value (JoinEqualCells property) - join the same string values in a cell (AllowDuplicates property) - ability to put an external object inside cross-tab - AddWidth, AddHeight properties to increase width&height of the cell - AutoSize property, ability to resize cells manually - line object can have arrows - added TfrxPictureView.FileLink property (can contain variable or a file name) - separate settings for each frame line (properties Frame.LeftLine, TopLine, RightLine, BottomLine can be set in the object inspector) - PNG images support (uncomment {$DEFINE PNG} in the frx.inc file) - Open Document Format for Office Applications (OASIS) exports, spreadsheet (ods) and text (odt) Enterprise components: - Users/Groups security support (see a demo application Demos\ClientServer\UserManager) - Templates support - Dynamically refresh of configuration, users/groups D2010以上版本(D14_D19)安装必读 delphi2010以上版本(D14_D19)使用者安装时,请将res\frccD14_D19.exe更名名为frcc.exe frccD14_D19.exe是专门的delphi2010以上版本(D14_D19)编码器。其他低delphi版本,请使用frcc.exe

CuteEditor功能特点
是什么使CuteEditor成为Html在线编辑器的领航者?除了其强大的功能和方便的使用, 这里还有一些顶尖的技术因素是CuteEditor编辑器成为你编辑和发布Web内容的最佳选择:
界面简洁加载速度快

由于才有了很多优化方法,所以CuteEditor非常简单、小巧、装载速度快,但仍然保持功能强大、执行效率高的特点。

跨浏览器,跨平台的所见即所得在线html编辑器

兼容市面上最流行的ie5.5+,firefox1.0+,mozilla1.3+, netscape7+和Safari(1.3+)浏览器,并且包括Mac和Linux操作平台。

CuteEditor遵循Web标准,没有类似 这种标签

你的Html编辑器还在使用类似 这种标签么? CuteEditor会帮助你构建用户最新Web标准的html代码标签,自动生成简洁的HTML/XHTML代码。 为什么要遵循Web标准?

学习应用Web标准有很多益处,下面给几个简单例子:

获得好的搜索引擎排名: The separation of content and presentation makes the content represent a larger part of the total file size. Combined with semantic markup this will improve search engine rankings.
更快的下载和加载网页: Less HTML results in smaller file sizes and quicker downloads. Modern web browsers render pages faster when they are in their standards mode than when they are in their backwards compatible mode.
适应未来网页浏览器: When you use defined standards and valid code you future-proof your documents by reducing the risk of future web browsers not being able to understand the code you have used.
代码编写简单,维护方便: Using more semantic and structured HTML makes it easier and quicker to understand code created by somebody else.
适应其他设备: Semantic HTML, where structure is separated from presentation, makes it easier for screen readers and alternative browsing devices to interpret the content.
非常好的适应性: A semantically marked up document can be easily adapted to print and alternative browsing devices, like handheld computers and cellular phones, just by linking to a different CSS file. You can also make site-wide changes to presentation by editing a single file.
Read more:
我的网页符合Web标准,你的呢?
能自动清理HTML代码中Word标记

When text is pasted from Microsoft Word allot of unnecessary word specific markup is carried across. This can result in web pages that take an unnecessarily long time to download. The Paste from Word button solves this by removing word markup before pasting the text into your page.

支持W3C WAI和section 508的无障碍引导

Cute Editor optional accessibility settings ensure your site complies with Section 508, so people with disabilities can have full access to your content.

输出的HTML或不错的XHTML供你选择 (Demo)

Cute Editor supports output well-formed XHTML. Your choice of XHTML 1.0 or HTML 4.01 output.


无限次的撤销/恢复

Many of the other editors on the market cannot undo or redo certain actions, and certain table operations - such as cell merge or column deletion. Cute Editor 4.0 has a new custom undo/redo implementation to make you can now safely undo those actions.


多语言支持,通过简单设置XML即可完成 (Demo)

All labels, buttons, tooltips and messages are located in external XML files, so that the language of the editor can be switched with a single property. You can also create a new language in a matter of minutes.

完全支持页面编辑(从 到 ) (Demo)

Cute Editor 4.0 allows you to edit a full HTML page, including , <!DOCTYPE...> and some other options. You can also insert Form elements (checkbox, button, textarea, etc.) and modify certain properties of the element.<br/> <br/> 默认换行为软回车 (Demo)<br/><br/>Most other editors insert double line returns which can be annoying for clients who are used to editing in Microsoft Word. CuteEditor can be configured to use <div>, <br> or <p> tags when you press enter. In either mode <br> tags can be <em>create</em>d by using shift+enter.<br/> <br/> 支持代码缩进和小写字母<br/><br/>Cute Editor displays nicely indented code in the HTML mode and the generating HTML tags and Attributes are in lower case. This is very convenient and important for the advanced users. <br/> <br/> 支持全屏编辑 (Demo)<br/><br/>It does not open a new window, instead it will resize to fit the browser screen. Edit in full screen mode, maximizing your available space. <br/><br/> <br/> 没有打开较慢的Java或ActiveX组件<br/><br/>100% DHTML, Java<em>Script</em> ASP.Net code. There are no slow Java or ActiveX components to worry about and everything is handled in the browser! <br/><br/> <br/> 支持相对地址和URL自动关联(Demo)<br/><br/>With Cute Editor, you have the choice of using either a relative or absolute URL. <br/> <br/> 部署简单<br/><br/>The perfect addition to your content management system! Only a couple lines of code , you don't need to be an expert. Allows you to add an online HTML editing functionality that works with standard HTML form.<br/> <br/> 可以简单的通过API隐藏按钮和标签 <br/><br/>Cute Editor allows developers to set the image directory, set the controls width, disable image uploading and deleting, restrict access to the source/preview tabs, hide buttons and lists that you don't want your clients to see or access. <br/> <br/> 支持图片的文字环绕 <br/><br/>Locate the image you want to wrap text around, and click any justify button in the toolbar. The image will float to the desired direction. Text will be positioned around the image. <br/> <br/> 支持文件下载 <br/><br/>You can upload document files, <em>create</em> a link from your HTML content to the document files (zip files, ppt files...). <br/> <br/> CSS型皮肤 (Demo)<br/><br/>Cute Editor provides several built in themes that are ready to use. Developers can completely change the appearance of the toolbar and the dialogs by simply modifying the supplied classes and images. <br/> <br/> 高级的表格管理<br/><br/><em>Create</em> and modify tables and table cells. Set their border color, alignment, cellspacing and more! Once you've <em>create</em>d a table, simply right click inside of it and use the handy popup menu to change its attributes. <caption>,<summary>,<thead>,<tfoot>,<th> tags are supported. <br/><br/> <br/> 图片插入和自动上传<br/><br/>Built-in thumbnail generator. Thumbnail images are dynamically <em>create</em>d; Supports upload new images. Paging - specify how many images. Support auto resize images.<br/> <br/> 具有特殊的对话框<br/><br/>With Style builder dialog box you can apply CSS style attributes directly to any HTML elements on your Web page.<br/> <br/> 支持内容模板 (Demo)<br/><br/>The basic idea behind a Content Management System (CMS) is to separate the management of content from design. Cute Editor allows the site designer to easily <em>create</em> and establish templates to give the site a uniform look. Templates may be modified when desired. <br/> <br/> 通过限制html和文字的长度来保护你的数据库 (Demo)<br/><br/>If you tried to insert a record whose text length is greater than allowed by your table, an error will be reported. To prevent this type of error from occurring, developers can use MaxHTMLLength or MaxTextLength in the Cute Editor to limit the length of the user抯 input. <br/> <br/> Apply security to control user access to resources <br/><br/>Cute Editor allows developers to assign a pre-defined set of permissions by group or individual. This prevents a normal user to access the administration functionality. <br/><br/>The details of permissions are <em>specified</em> by an XML security policy file. Each level maps to a specific file. The default mappings: <br/><br/>admin设置 admin.config <br/>default设置 default.config <br/>guest设置 guest.config <br/>You can customize and extend each policy file by editing the XML security policy file. You can also <em>create</em> your own policy files that define arbitrary permission sets.<br/><br/>Comparison of the sample security policy file <br/><br/> <br/>Permissions/Resource Setting Admin Default Guest <br/>AllowUpload <br/>AllowDelete <br/>AllowCopy <br/>AllowMove <br/>Allow<em>Create</em>Folder <br/>AllowDeleteFolder <br/>RestrictUploadedImageDimension <br/>AutoResizeUploadedImages <br/>MaxImageWidth 6400 640 640 <br/>MaxImageHeight 4800 480 480 <br/>MaxImageSize 10000 100 100 <br/>MaxMediaSize 10000 100 100 <br/>MaxFlashSize 10000 100 100 <br/>MaxDocumentSize 10000 100 100 <br/>ImageGalleryPath ~/uploads ~/uploads/member ~/uploads/guest <br/>MediaGalleryPath ~/uploads ~/uploads/member ~/uploads/guest <br/>FlashGalleryPath ~/uploads ~/uploads/member ~/uploads/guest <br/>FilesGallaryPath ~/uploads ~/uploads/member ~/uploads/guest <br/>ImageFilters .jpg <br/>.jpeg <br/>.gif <br/>.png .jpg <br/>.jpeg <br/>.gif <br/> .jpg <br/>.jpeg <br/>.gif <br/> <br/>MediaFilters .avi <br/>.mpg <br/>.mpeg <br/>.mp3 .avi <br/>.mpg <br/>.mpeg <br/> .avi <br/>.mpg <br/>.mpeg <br/> <br/>DocumentFilters .txt, .doc<br/>.pdf, .zip<br/>.rar, .avi<br/>.mpg, .mpeg<br/>.mp3, .jpg<br/>.jpeg,.gif<br/>.png .pdf, .doc<br/> .txt, .doc<br/>.pdf, .zip<br/> <br/> <br/> 在线图片编辑<br/><br/>People that input content on a website are generally not web designers, so most don't have that design & technical fibre in them. With online image editor, you can now edit image file with no image editing software to download or install! Easy drag and drop familiar interface. Resize, change dimensions, scale, crop, add text, optimize, rotate, flip, mirror and add watermark. <br/> <br/> 控制上传文件夹大小<br/><br/>Max Upload Folder size(Including all subfolders and files. A must have feature for people who have limited hosting space.) Dynamic display of available free space in the Upload Folder.Limits the size of your upload folder. If the max is reached uploads will be disabled. <br/> <br/> 支持图片热点<br/><br/>Image maps are pictures with clickable regions also known as "hotspots." When users click on one of the hotspots, they're directed to the page you designate. CuteEditor 5.0 lets you easily <em>create</em> image maps to add fun and excitement to a page<br/> <br/> <div> 的盒模式<br/><br/><div> boxes offer a much greater ability to control the layout of a page. With CuteEditor, you can put any content between <div> tags and then use CSS to style all sorts of borders, backgrounds, etc. <br/> <br/> 通用虚拟键盘<br/><br/>Virtual Keyboard does not require changes to <em>lan</em><em>guage</em> settings of your system and even speeds up the entire text input process for your customers. It lets your native speaking clients to access your web resources from any location in the world without changing national keyboard layouts and fonts on their machines. <br/> <br/> 把图片存到数据库<br/><br/>With CuteEditor you can easily use a Sql Server database or access database as the file storage. <br/> <br/> RTF和HTML之间互相转换<br/><br/>With CuteEditor you can easily convert an HTML document into an RTF file and RTF file into HTML or XHTML document. <br/> <br/> 生成PDF文件<br/><br/>CuteEditor also allows you dynamically <em>create</em> Adobe PDF documents from ASP.NET.<br/> cuteEditor6.0多语言版(集成lic文件) <br/><br/>目前功能强大,最好的Asp.net编辑器之一 <br/>除了一般html编辑器具有的功能外,还有word过滤、图片在线处理、加水印等实用功能 <br/>使用关键步骤: <br/><br/>1、引用bin下的cuteEditor文件 <br/>2、在aspx页面顶部中添加引用 <br/>3、在aspx页面中加入代码 <br/>4、最后可以在.cs文件中通过来读取Editor1.Text的值来进行任意的扩展和控制了 <br/>具体配置可参照default.aspx和default.aspx.cs <br/><br/>关于cuteEditor6.0的特征及体验请浏览cuteEditor.cn,系统集成了lic授权文件,仅供体验测试使用,请不要用于任何商业用途! <br/><br/> <br/></a></div><div data-report-view="{"mod":"popu_645","index":"5","dest":"https://blog.csdn.net/dragoo1/article/details/8533207","strategy":"2~default~OPENSEARCH~Rate","extra":"{\"utm_medium\":\"distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-5-8533207-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\",\"dist_request_id\":\"1752188793655_20269\"}","spm":"1035.2023.3001.6557"}" class="list-item" data-v-ca2d15ac><div class="recommend-title" data-v-ca2d15ac><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAeZJREFUWEdjZGBgYPhQkSn49/v/EAbG/2oM/xn4QWI0A4wMHxn+M95i5mRcI9Ax/T0jyPI/P/7VM/5n4KKZpVgM/s/I8I2Fg6mR8W1+RioDw39TelqOsIvxNOPbgvRumgc7Lt8xMnxkfJufPmtgfA+xddQBeEOAv7opgImHh5PoKPr169fnOdN3/Xn88DOxevA6QLC9L5KRk4uHWMNA6v59+fz50+TeTf9evvhGjD6qOwDsiI8fPnya2LX537t3Pwg5giYOADvi3Zs3nyZ0bfn36dNvfI6gmQNAlv599fLlxwmd2xi+ffuDsyjAVw6QkwbQLfr76MHDj30duwbMAf+/f/vyvrJoOcUO+Pf82dOv2zadIZSoQPLcXn4mTJJS0iA21Rzw+/6de58n9uwlxgG8+SXOrIoqSlR1ADEWY1NDtRBg+PXrx7+PHz4S4xAmfgF+BjY2DqqGwIBHwb/3797+unzhFjEhwKZroMYkKCRM1RAgxmKapoF/r1+9/HHs8GVslrCISfCzWVpjbdZRLRHiSwOsugZivMkZ/jQNAYa/f//8//UTe+3GyMTMyMGBtd1AtRAY8DQwIA7gTcuxZuDkABcoZIPvP358njXlKFmVEdmWkqBxMHRMBrhrNuCdU1B0DWT3HACwkGScZb+cwwAAAABJRU5ErkJggg==" alt data-v-ca2d15ac> <a target="_blank" href="https://blog.csdn.net/dragoo1/article/details/8533207" data-report-click="{"mod":"popu_645","index":"5","dest":"https://blog.csdn.net/dragoo1/article/details/8533207","strategy":"2~default~OPENSEARCH~Rate","extra":"{\"utm_medium\":\"distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-5-8533207-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\",\"dist_request_id\":\"1752188793655_20269\"}","spm":"1035.2023.3001.6557"}" data-report-query="spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-5-8533207-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-5-8533207-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default" class="title" data-v-ca2d15ac>A <em>script</em> <em>engine</em> for the <em>specified</em> <em>lan</em><em>guage</em> can not be <em>create</em>d</a></div> <a target="_blank" href="https://blog.csdn.net/dragoo1/article/details/8533207" data-report-click="{"mod":"popu_645","index":"5","dest":"https://blog.csdn.net/dragoo1/article/details/8533207","strategy":"2~default~OPENSEARCH~Rate","extra":"{\"utm_medium\":\"distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-5-8533207-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\",\"dist_request_id\":\"1752188793655_20269\"}","spm":"1035.2023.3001.6557"}" data-report-query="spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-5-8533207-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-5-8533207-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default" class="desc" data-v-ca2d15ac>http://support.microsoft.com/kb/859712 vb<em>script</em>.dll未注册</a></div></div></div></div> <div class="public_pc_right_footer2020" style="display:none;" data-v-4a5a7f56></div></div> <div id="right-floor-user-content_562" data-editor="{"type":"floor","pageId":143,"floorId":562}" class="user-right-floor right-box main-box detail-user-right" data-v-229a00b0><div class="__vuescroll" style="height:100%;width:100%;padding:0;position:relative;overflow:hidden;"><div class="__panel __hidebar" style="position:relative;box-sizing:border-box;height:100%;overflow-y:hidden;overflow-x:hidden;transform-origin:;transform:;"><div class="__view" style="position:relative;box-sizing:border-box;min-width:100%;min-height:100%;"><!----><div comp-data="[object Object]" baseInfo="[object Object]" community="[object Object]" class="introduce" data-v-4722a3ae><div class="introduce-title" data-v-4722a3ae><div class="img-info" data-v-4722a3ae><a href="https://bbs.csdn.net/forums/MSSQL_Basic" class="community-img" data-v-4722a3ae><img src="https://img-community.csdnimg.cn/avatar/db13a8bbc42a48ce93c67e94237e250c.png?x-oss-process=image/resize,m_fixed,h_88,w_88" alt data-v-4722a3ae> <div title="MS-SQL Server" class="community-name" data-v-4722a3ae> MS-SQL Server </div></a></div></div> <div class="content" data-v-4722a3ae><div class="detail" data-v-4722a3ae><div title="34838" class="item" data-v-4722a3ae><p class="num" data-v-4722a3ae> 34,838 </p> <p class="desc" data-v-4722a3ae> 社区成员 </p></div> <div title="254632" class="item" data-v-4722a3ae><a href="https://bbs.csdn.net/forums/MSSQL_Basic" target="_blank" data-v-4722a3ae><p class="num" data-v-4722a3ae> 254,632 </p> <p class="desc" data-v-4722a3ae> 社区内容 </p></a></div></div> <div class="detail-btns" data-v-4722a3ae><div class="community-ctrl-btns_wrapper" data-v-0ebf603c data-v-4722a3ae><div class="community-ctrl-btns" data-v-0ebf603c><div class="community-ctrl-btns_item" data-v-0ebf603c><div data-v-160be461 data-v-0ebf603c><div data-report-click="{"spm":"3001.5975"}" data-v-160be461><img src="https://csdnimg.cn/release/cmsfe/public/img/topic.427195d5.png" alt="" class="img sendTopic" data-v-160be461 data-v-0ebf603c> <span data-v-160be461 data-v-0ebf603c>发帖</span></div> <!----> <!----></div></div><div class="community-ctrl-btns_item" data-v-0ebf603c><div data-v-0ebf603c><img src="https://csdnimg.cn/release/cmsfe/public/img/me.40a70ab0.png" alt="" class="img me" data-v-0ebf603c> <span data-v-0ebf603c>与我相关</span></div></div><div class="community-ctrl-btns_item" data-v-0ebf603c><div data-v-0ebf603c><img src="https://csdnimg.cn/release/cmsfe/public/img/task.87b52881.png" alt="" class="img task" data-v-0ebf603c> <span data-v-0ebf603c>我的任务</span></div></div><div class="community-ctrl-btns_item" data-v-0ebf603c><div class="community-share" data-v-4ca34db9 data-v-0ebf603c><div class="handle-item share" data-v-ca030a68 data-v-4ca34db9><span height="384" data-v-ca030a68><div role="tooltip" id="el-popover-9709" aria-hidden="true" class="el-popover el-popper popo share-popover" style="width:265px;display:none;"><!----><div id="tool-QRcode" class="QRcode" data-v-ca030a68><img src="https://csdnimg.cn/release/cmsfe/public/img/shareBg3.9519d347.png" alt="" class="share-bg" data-v-ca030a68> <div class="share-bg-box" data-v-ca030a68><div class="share-content" data-v-ca030a68><img src="https://img-community.csdnimg.cn/avatar/db13a8bbc42a48ce93c67e94237e250c.png?x-oss-process=image/resize,m_fixed,h_88,w_88" alt="" class="share-avatar" data-v-ca030a68> <div class="share-tit" data-v-ca030a68>MS-SQL Server</div> <div class="share-dec" data-v-ca030a68>MS-SQL Server相关内容讨论专区</div> <span class="copy-share-url" data-v-ca030a68>复制链接</span> <div class="shareText" data-v-ca030a68> </div></div> <div class="share-code" data-v-ca030a68><div class="qrcode" data-v-ca030a68></div> <div class="share-code-text" data-v-ca030a68>扫一扫</div></div></div></div> </div><span class="el-popover__reference-wrapper"><div data-v-0ebf603c><img src="https://csdnimg.cn/release/cmsfe/public/img/share-circle.3e0b7822.png" alt="" class="img share" data-v-0ebf603c> <span data-v-0ebf603c>分享</span></div></span></span></div> <!----></div></div></div> <!----> <div data-v-4fb59baf data-v-0ebf603c><div class="el-dialog__wrapper ccloud-pop-outer2" style="display:none;" data-v-4fb59baf><div role="dialog" aria-modal="true" aria-label="dialog" class="el-dialog el-dialog--center" style="margin-top:15vh;width:70%;"><div class="el-dialog__header"><span class="el-dialog__title"></span><!----></div><!----><div class="el-dialog__footer"><span class="dialog-footer clearfix" data-v-4fb59baf><div class="confirm-btm fr" data-v-4fb59baf>确定</div></span></div></div></div></div></div></div></div> <div style="display:none;" data-v-4722a3ae data-v-4722a3ae><!----> <div class="introduce-desc" data-v-4722a3ae><div class="introduce-desc-title" data-v-4722a3ae>社区描述</div> <span data-v-4722a3ae> MS-SQL Server相关内容讨论专区 </span></div></div> <div class="introduce-text" data-v-4722a3ae><div class="label-box" data-v-4722a3ae><!----> <!----> <!----></div></div> <!----> <div class="manage" data-v-4722a3ae><div class="manage-inner" data-v-4722a3ae><span data-v-4722a3ae>社区管理员</span> <ul data-v-4722a3ae><li data-v-4722a3ae><a href="https://blog.csdn.net/community_187" target="_blank" class="start-img" data-v-4722a3ae><img src="https://profile-avatar.csdnimg.cn/default.jpg!1" alt="基础类社区" class="el-tooltip item" data-v-4722a3ae data-v-4722a3ae></a></li><li data-v-4722a3ae><a href="https://blog.csdn.net/sinat_28984567" target="_blank" class="start-img" data-v-4722a3ae><img src="https://profile-avatar.csdnimg.cn/e4154da1658b49ca87b443a68b0fac47_sinat_28984567.jpg!1" alt="二月十六" class="el-tooltip item" data-v-4722a3ae data-v-4722a3ae></a></li><li data-v-4722a3ae><a href="https://blog.csdn.net/wmxcn2000" target="_blank" class="start-img" data-v-4722a3ae><img src="https://profile-avatar.csdnimg.cn/5591b292aa3a4c7db7b6c521d7086c16_wmxcn2000.jpg!1" alt="卖水果的net" class="el-tooltip item" data-v-4722a3ae data-v-4722a3ae></a></li></ul></div></div> <div class="actions" data-v-4722a3ae><!----> <div style="flex:1;" data-v-4722a3ae><div class="join-btn" data-v-4722a3ae> 加入社区 </div></div> <!----> <!----></div> <div class="el-dialog__wrapper" style="display:none;" data-v-38c57799 data-v-4722a3ae><div role="dialog" aria-modal="true" aria-label="获取链接或二维码" class="el-dialog join-qrcode-dialog" style="margin-top:15vh;width:600px;"><div class="el-dialog__header"><span class="el-dialog__title">获取链接或二维码</span><button type="button" aria-label="Close" class="el-dialog__headerbtn"><i class="el-dialog__close el-icon el-icon-close"></i></button></div><!----><div class="el-dialog__footer"><span class="dialog-footer" data-v-38c57799></span></div></div></div> <div class="collapse-btn" data-v-4722a3ae><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAAgCAYAAACFM/9sAAAAAXNSR0IArs4c6QAAAi1JREFUaEPtl01u01AUhc+N8wMSO4AxzJAqwQpKQsdtbMOICmKnwCKQ2ACDIgotrYKiduIiVZ10B0CBAjtAbICfooomJr3IcUoTiVLb15GNuG/67nm65/M5AxP0iAiQSK1iKEBhCBSgAhQSEMo1gQpQSEAo1wQqQCEBoVwT+K8CnLnWvER8cOHMaf95q9Xaj+vDtp3LPeD83u6p9a2t+U5cfVrzmSTQNOfOgg4+ATDAeNHp/Jza3Fz5HtWUZbl3GXjYn2e+53lL96Nq057LBOD0dOOcUSx8BFAcGHpZLlWmVlfnd08yaJrubRAe/Z77HwEG5kdS1E8StgFc9bzFb8dBrNtukxgLwOAXNEF6T/pAce8zSeDhknXbuUNMQRUHe/BrMNX+BNGyHIdBT45m6VVn36/FqX5cOFHmMwUYJrE5x+CgkuEujLe+361ubLS+HhowzeYtEC8NzWyXy5ValMpHgSCZyRxgsLxpui4Ij4/ShZ1S0aiurS18sSznJoOeDt29AaP6t6pLgMTV5gJgsHTddhvEWBwC9Y6AZww8AFA4Lp1xDac9nxuAYZ37aQuqGgIbPTt+t3tluNppw0jyXq4AhnV2ZkG0PAKR8b5UMiaDSicxOU5N7gCGSXRvMLAygPgB3Jv0vOXP4wSR9O1cAgzMzFxvXDR6hYlK5cd6u93eS2pw3LrcAhy38bTeV4BCkgpQAQoJCOWaQAUoJCCUawIVoJCAUK4JVIBCAkL5L1yapyGdIBwvAAAAAElFTkSuQmCC" alt data-v-4722a3ae></div></div><!----><!----><div comp-data="[object Object]" baseInfo="[object Object]" typePage="detail" community="[object Object]" class="floor-user-right-rank" data-v-3d3affee><div class="el-tabs el-tabs--top" data-v-3d3affee><div class="el-tabs__header is-top"><div class="el-tabs__nav-wrap is-top"><div class="el-tabs__nav-scroll"><div role="tablist" class="el-tabs__nav is-top" style="transform:translateX(-0px);"><div class="el-tabs__active-bar is-top" style="width:0px;transform:translateX(0px);ms-transform:translateX(0px);webkit-transform:translateX(0px);"></div></div></div></div></div><div class="el-tabs__content"><div role="tabpanel" id="pane-integral" aria-labelledby="tab-integral" class="el-tab-pane" data-v-3d3affee></div><div role="tabpanel" aria-hidden="true" id="pane-3" aria-labelledby="tab-3" class="el-tab-pane" style="display:none;" data-v-3d3affee></div><div role="tabpanel" aria-hidden="true" id="pane-5" aria-labelledby="tab-5" class="el-tab-pane" style="display:none;" data-v-3d3affee></div><div role="tabpanel" aria-hidden="true" id="pane-6" aria-labelledby="tab-6" class="el-tab-pane" style="display:none;" data-v-3d3affee></div></div></div> <div class="floor-user-right-rank-score" data-v-608528ce data-v-3d3affee><div class="floor-user-right-rank-score-tabs" data-v-608528ce><ul data-v-608528ce><li data-v-608528ce> 近7日 </li><li data-v-608528ce> 近30日 </li><li class="active" data-v-608528ce> 至今 </li></ul></div> <div class="floor-user-right-rank-common" data-v-46cf600d data-v-608528ce><div class="rank-list" data-v-46cf600d><!----> <div class="no-data loading" data-v-46cf600d><i class="el-icon-loading" data-v-46cf600d></i> <p data-v-46cf600d>加载中</p></div> <!----> <a href="https:///MSSQL_Basic/rank/list/total" target="_blank" class="show-more" data-v-46cf600d> 查看更多榜单 </a></div></div></div></div><div comp-data="[object Object]" baseInfo="[object Object]" typePage="detail" community="[object Object]" class="floor comunity-rule" data-v-3cfa4dbd><div class="title" data-v-3cfa4dbd> 社区公告 </div> <div class="contain" data-v-3cfa4dbd><div class="inner-content" data-v-3cfa4dbd>暂无公告</div></div></div><div comp-data="[object Object]" baseInfo="[object Object]" typePage="detail" community="[object Object]" class="user-right-adimg empty-arr" data-v-15c6aa4f><div class="adImgs" data-v-2a6389b9 data-v-15c6aa4f><!----> <div data-v-2a6389b9><div data-v-2a6389b9></div></div></div></div><div comp-data="[object Object]" baseInfo="[object Object]" typePage="detail" community="[object Object]" class="ai-entrance" data-v-eb1c454c><p data-v-eb1c454c>试试用AI创作助手写篇文章吧</p> <div class="entrance-btn-line" data-v-eb1c454c><a href="https://mp.csdn.net/edit?guide=1" target="_blank" data-report-click="{"spm":"3001.9712"}" data-report-query="spm=3001.9712" class="entrance-btn" data-v-eb1c454c>+ 用AI写文章</a></div></div></div></div></div></div></div></div></div></div> <!----></div></div></div> <div> <script type="text/javascript" src="https://g.csdnimg.cn/common/csdn-footer/csdn-footer.js" data-isfootertrack="false" defer></script> </div></div></div><script> window.__INITIAL_STATE__= {"csrf":"x04r631y-4Hss239V_jZuBOjqlJ105amJDgU","origin":"http:\u002F\u002Fbbs.csdn.net","isMobile":false,"cookie":"uuid_tt_dd=10_36287181340-1752188763529-947874; csrfToken=0GnVvjucuapsh9rthBaKdKiN; uuid_tt_dd=10_36287181340-1752188763529-947874; dc_sid=a56dce2f080ad55c7c1948ecef16bdff; dc_session_id=10_1752188763529.626961","ip":"216.73.216.54","pageData":{"page":{"pageId":143,"title":"社区详情","keywords":"社区详情","description":"社区详情","ext":{"isMd":"true","armsfe1":"{pid:\"dyiaei5ihw@1a348e4d05c2c78\",appType:\"web\",imgUrl:\"https:\u002F\u002Farms-retcode.aliyuncs.com\u002Fr.png?\",sendResource:true,enableLinkTrace:true,behavior:true}","redPacketCfg":"{\"presetTitle\":[\"成就一亿技术人!\",\"大吉大利\",\"节日快乐\",\"Bug Free\",\"Hello World\",\"Be Greater Than Average!!\"],\"defaultTitle\":\"成就一亿技术人!\",\"preOpenSty\":{},\"redCardSty\":{}}","blogStar":"[{\"year\":\"2021\",\"enable\":true,\"communityIds\":[3859],\"url\":\"https:\u002F\u002Fbbs.csdn.net\u002Fsummary2021\"},{\"year\":\"2022\",\"enable\":true,\"communityIds\":[3860],\"url\":\"https:\u002F\u002Fbbs.csdn.net\u002Fsummary2022\"}]","mdVersion":"https:\u002F\u002Fcsdnimg.cn\u002Frelease\u002Fmarkdown-editor\u002F1.1.0\u002Fmarkdown-editor.js","componentSortCfg":"{ \"right\":[\"ratesInfo\",\"cty-profile\",\"pub-comp\",\"user-right-introduce\",\"post-event\",\"my-mission\", \"user-right-rank\",\"user-right-rule\",\"user-right-adimg\"] }","showCknowDetail":"{\"show\":true,\"reportView\":true,\"url\":\"https:\u002F\u002Fai.csdn.net\u002Fhomework?utm_source=cknow_bbs_detail\",\"spm\":\"1035.2022.3001.10801\"}","show_1024":"{\"enable\":false,\"useWhitelist\":false,\"whitelist\":[76215],\"home\":\"https:\u002F\u002F1111.csdn.net\u002F\",\"logo\":\"https:\u002F\u002Fimg-home.csdnimg.cn\u002Fimages\u002F20221104102741.png\",\"hideLive\":true}","iframes":"[\"3859\"]","pageCfg":"{\"disableDownloadPDF\": false,\"hideSponsor\":false}"}},"template":{"templateId":71,"templateComponentName":"ccloud-detail","title":"ccloud-detail","floorList":[{"floorId":562,"floorComponentName":"floor-user-content","title":"社区详情页","description":"社区详情页","indexOrder":3,"componentList":[{"componentName":"baseInfo","componentDataId":"cloud-detail1","componentConfigData":{},"relationType":3},{"componentName":"user-right-introduce","componentDataId":"","componentConfigData":{},"relationType":2},{"componentName":"user-recommend","componentDataId":"","componentConfigData":{},"relationType":2},{"componentName":"user-right-rank","componentDataId":"","componentConfigData":{},"relationType":2},{"componentName":"user-right-rule","componentDataId":"","componentConfigData":{},"relationType":2},{"componentName":"user-right-adimg","componentDataId":"","componentConfigData":{},"relationType":2},{"componentName":"default2014LiveRoom","componentDataId":"20221024DefaultLiveRoom","componentConfigData":{},"relationType":3}]}]},"data":{"baseInfo":{"customDomain":"","uriName":"MSSQL_Basic","communityHomePage":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic","owner":{"userName":"community_187","nickName":"基础类社区","avatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","position":"","companyName":""},"user":{"userRole":3,"userName":null,"nickName":null,"avatarUrl":null,"rank":null,"follow":2,"communityBase":null,"joinCollege":null,"isVIP":null},"community":{"name":"MS-SQL Server","description":"MS-SQL Server相关内容讨论专区","avatarUrl":"https:\u002F\u002Fimg-community.csdnimg.cn\u002Favatar\u002Fdb13a8bbc42a48ce93c67e94237e250c.png?x-oss-process=image\u002Fresize,m_fixed,h_88,w_88","qrCode":"","createTime":"2007-09-28","communityAvatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","communityNotice":null,"userCount":34838,"contentCount":254632,"followersCount":15161,"communityRule":"","communityId":302,"bgImage":"","hashId":"mgwm8lnl","domain":"","uriName":"MSSQL_Basic","externalDisplay":1,"adBanner":{"img":"","url":"","adType":0,"adCon":null},"rightBanner":{"img":"","url":"","adType":0,"adCon":null},"tagId":null,"tagName":null,"communityType":1,"communityApplyUrl":"https:\u002F\u002Fmarketing.csdn.net\u002Fquestions\u002FQ2106040308026533763","joinType":0,"visibleType":0,"collapse":0,"topicMoveAble":0,"allowActions":{},"communityOwner":"community_187","tagNameInfo":{"provinceTag":null,"areaTag":null,"technologyTags":null,"customTags":null}},"tabList":[{"tabId":1461,"tabName":"全部","tabUrl":"","tabSwitch":1,"tabType":4,"tabContribute":0,"cardType":0,"indexOrder":-1,"url":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic?typeId=1461","iframe":false,"sortType":1},{"tabId":739,"tabName":"基础类","tabUrl":"","tabSwitch":1,"tabType":1,"tabContribute":1,"cardType":0,"indexOrder":0,"url":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic?typeId=739","iframe":false,"sortType":1},{"tabId":740,"tabName":"应用实例","tabUrl":"","tabSwitch":1,"tabType":1,"tabContribute":1,"cardType":0,"indexOrder":0,"url":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic?typeId=740","iframe":false,"sortType":1},{"tabId":741,"tabName":"新技术前沿","tabUrl":"","tabSwitch":1,"tabType":1,"tabContribute":1,"cardType":0,"indexOrder":0,"url":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic?typeId=741","iframe":false,"sortType":1},{"tabId":4055703,"tabName":"博文收录","tabUrl":"","tabSwitch":1,"tabType":2,"tabContribute":0,"cardType":0,"indexOrder":19,"url":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic?typeId=4055703","iframe":false,"sortType":1}],"dataResource":{"mediaType":"c_cloud","subResourceType":"8_c_cloud_long_text","showType":"long_text","tabId":0,"communityName":"MS-SQL Server","communityHomePageUrl":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic","communityType":1,"content":{"id":"260035406","contentId":260035406,"cateId":0,"cateName":null,"url":"https:\u002F\u002Fbbs.csdn.net\u002Ftopics\u002F260035406","shareUrl":"https:\u002F\u002Fbbs.csdn.net\u002Ftopics\u002F260035406","createTime":"2008-08-26 09:26:47","updateTime":"2021-05-28 16:57:12","resourceUsername":"TFsoft2008","best":0,"top":0,"text":null,"publishDate":"2008-08-26","lastReplyDate":"2011-06-28","type":"13","nickname":"TFsoft2008","avatar":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","username":"tfsoft2008","commentCount":4,"diggNum":0,"digg":false,"viewCount":1911,"hit":false,"resourceSource":6,"status":10,"taskStatus":null,"expired":false,"taskCate":0,"taskAward":0,"taskExpired":null,"checkRedPacket":null,"avgScore":0,"totalScore":0,"topicTitle":"A script engine for the specified language can be not created","insertFirst":false,"likeInfo":null,"description":"大家好: 我重装系统后,运行一个VB编写的程序,就会提示 A script engine for the specified language can be not created。 以前没有这个提示的,不知道我哪个地方没弄好,望大家指教!","coverImg":"https:\u002F\u002Fimg-home.csdnimg.cn\u002Fimages\u002F20221026062116.png","content":"大家好:\u003Cbr \u002F\u003E\n 我重装系统后,运行一个VB编写的程序,就会提示 A script engine for the specified language can be not created。\u003Cbr \u002F\u003E\n 以前没有这个提示的,不知道我哪个地方没弄好,望大家指教!","mdContent":null,"pictures":null,"videoInfo":null,"linkInfo":null,"student":{"isCertification":false,"org":"","bala":""},"employee":{"isCertification":false,"org":"","bala":""},"userCertification":[],"dependId":"0","dependSubType":null,"videoUrl":null,"favoriteCount":0,"favoriteStatus":false,"taskType":null,"defaultScore":null,"syncAsk":false,"videoPlayLength":null},"communityUser":null,"allowPost":false,"submitHistory":[{"user":{"registerurl":"https:\u002F\u002Fg.csdnimg.cn\u002Fstatic\u002Fuser-reg-year\u002F1x\u002F17.png","avatarurl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","nickname":"TFsoft2008","selfdesc":"","createdate":"2008-01-04 16:18:00","days":"6398","years":"17","username":"TFsoft2008","school":null,"company":null,"job":null},"userName":"TFsoft2008","event":"创建了帖子","body":"2008-08-26 09:26","editId":null}],"resourceExt":{}},"contentReply":{"pageNo":1,"pageSize":20,"totalPages":1,"totalCount":4,"total":0,"list":[{"hit":null,"hitMsg":null,"content":"是没有安装Microsoft Script Control,就他妈的我安装了Microsoft Script Control但是装好的时候可以用,重启一下电脑就不行了!!!!","topicTitle":null,"description":"是没有安装Microsoft Script Control,就他妈的我安装了Microsoft Script Control但是装好的时候可以用,重启一下电脑就不行了!!!!","id":290263438,"contentResourceId":260035406,"bindContentResourceId":0,"communityId":302,"username":"superbryant","userNickName":"极无宪","userAvatar":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002F11ff8e1c10484c93b8a63dbfdf938f41_superbryant.jpg!1","mdContent":null,"parentId":0,"replyName":"","replyNickName":"","bizNo":"bbs","ip":989664042,"status":10,"childCount":0,"topStatus":0,"recommendStatus":0,"userLike":false,"diggCount":0,"childIds":"","createTime":"2011-06-28 09:30:11","updateTime":"2011-06-28 09:31:19","formatTime":"2011-06-28","userRoleHonorary":{"userName":null,"roleId":null,"roleType":null,"roleStatus":null,"honoraryId":null,"roleName":null,"honoraryName":null,"communityNickname":null,"communitySignature":null},"child":null,"communityNickname":null,"communityReplyNickname":null,"rewardInfo":null,"checkRedPacketVO":null,"noDiggCount":null},{"hit":null,"hitMsg":null,"content":"是程序里面有这句"ScpFomual.Language = "VBScript"",出错就在这个地方","topicTitle":null,"description":"是程序里面有这句\"ScpFomual.Language = \"VBScript\"\",出错就在这个地方","id":240215433,"contentResourceId":260035406,"bindContentResourceId":0,"communityId":302,"username":"smbsoft","userNickName":"smbsoft","userAvatar":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","mdContent":null,"parentId":0,"replyName":"","replyNickName":"","bizNo":"bbs","ip":977042584,"status":10,"childCount":0,"topStatus":0,"recommendStatus":0,"userLike":false,"diggCount":0,"childIds":"","createTime":"2008-09-19 11:01:06","updateTime":"2008-09-19 11:01:08","formatTime":"2008-09-19","userRoleHonorary":{"userName":null,"roleId":null,"roleType":null,"roleStatus":null,"honoraryId":null,"roleName":null,"honoraryName":null,"communityNickname":null,"communitySignature":null},"child":null,"communityNickname":null,"communityReplyNickname":null,"rewardInfo":null,"checkRedPacketVO":null,"noDiggCount":null},{"hit":null,"hitMsg":null,"content":"我今天也遇到这个问题,大家帮帮忙吧!我的里面有这句"ScpFomual.Language = "VBScript"",是不是没装什么字体?","topicTitle":null,"description":"我今天也遇到这个问题,大家帮帮忙吧!我的里面有这句\"ScpFomual.Language = \"VBScript\"\",是不是没装什么字体?","id":240215383,"contentResourceId":260035406,"bindContentResourceId":0,"communityId":302,"username":"smbsoft","userNickName":"smbsoft","userAvatar":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","mdContent":null,"parentId":0,"replyName":"","replyNickName":"","bizNo":"bbs","ip":977125311,"status":10,"childCount":0,"topStatus":0,"recommendStatus":0,"userLike":false,"diggCount":0,"childIds":"","createTime":"2008-09-19 10:59:53","updateTime":"2008-09-19 10:59:54","formatTime":"2008-09-19","userRoleHonorary":{"userName":null,"roleId":null,"roleType":null,"roleStatus":null,"honoraryId":null,"roleName":null,"honoraryName":null,"communityNickname":null,"communitySignature":null},"child":null,"communityNickname":null,"communityReplyNickname":null,"rewardInfo":null,"checkRedPacketVO":null,"noDiggCount":null},{"hit":null,"hitMsg":null,"content":"好象是某些setting有错, 帮你顶吧.","topicTitle":null,"description":"好象是某些setting有错, 帮你顶吧.","id":231048397,"contentResourceId":260035406,"bindContentResourceId":0,"communityId":302,"username":"bwu851","userNickName":"bwu851","userAvatar":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","mdContent":null,"parentId":0,"replyName":"","replyNickName":"","bizNo":"bbs","ip":1625512937,"status":10,"childCount":0,"topStatus":0,"recommendStatus":0,"userLike":false,"diggCount":0,"childIds":"","createTime":"2008-08-27 07:47:11","updateTime":"2008-08-27 07:47:15","formatTime":"2008-08-27","userRoleHonorary":{"userName":null,"roleId":null,"roleType":null,"roleStatus":null,"honoraryId":null,"roleName":null,"honoraryName":null,"communityNickname":null,"communitySignature":null},"child":null,"communityNickname":null,"communityReplyNickname":null,"rewardInfo":null,"checkRedPacketVO":null,"noDiggCount":null}],"maxPageSize":3000},"defaultActiveTab":1461,"recommends":[{"url":"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fyanjin050518\u002F4126629","title":"BobBuilder_app","desc":"Twitter \n Digg \n Facebook \n Del.icio.us \n Reddit \n Stumbleupon \n Newsvine \n Technorati \n Mr. Wong \n Yahoo! \n Google \n Windows Live \n Send as Email \nAdd to your CodeProject bookmarks\n \nDiscuss this article\n85 \nPrint Article\nDatabase » Database » Other databasesLicence CPOL \nFirst Posted 19 Jan 2012 \nViews 24,219 \nDownloads 992 \nBookmarked 74 times \nRaptorDB - The Key Value Store V2\nBy Mehdi Gholam | 8 Mar 2012 | Unedited contribution \nC#.NETDBABeginnerIntermediateAdvanceddatabase \nEven faster Key\u002FValue store nosql embedded database \u003Cem\u003Eengine\u003C\u002Fem\u003E utilizing the new MGIndex data structure with MurMur2 Hashing and WAH Bitmap indexes for duplicates. \n \nSee Also\nMore like this \nMore by this author \nArticle Browse Code Stats Revisions (8) Alternatives \n 4.95 (56 votes) \n\n\n1 \n2 \n3 \n4 \n5 \n\n4.95\u002F5 - 56 votes\nμ 4.95, σa 1.05 [?] \nIs your email address OK? You are signed up for our newsletters but your email address is either unconfirmed, or has not been reconfirmed in a long time. Please click here to have a confirmation email sent so we can confirm your email address and start sending you newsletters again. Alternatively, you can update your sub\u003Cem\u003Escript\u003C\u002Fem\u003Eions.\n \n \nAdd your own\nalternative version \n\nIntroduction\nWhat is RaptorDB?\nFeatures\nWhy another data structure?\nThe problem with a b+tree\nRequirements of a good index structure\nThe MGIndex\nPage Splits\nInteresting side effects of MGIndex \nThe road not taken \u002F the road taken and doubled back!\nPerformance Tests\nComparing B+tree and MGIndex\nReally big data sets!\nIndex parameter tuning\nPerformance Tests - v2.3\nUsing the Code\nDifferences to v1\nUsing RaptorDBString and RaptorDBGuid\nGlobal parameters\nRaptorDB interface\nNon-clean shutdowns \nRemoving Keys\nUnit tests\nFile Formats\nFile Format : *.mgdat\nFile Format : *.mgbmp \nFile Format : *.mgidx\nFile Format : *.mgbmr , *.mgrec\nHistory\n Download RaptorDB_v2.0.zip - 38.7 KB \nDownload RaptorDB_v2.1.zip - 39 KB \nDownload RaptorDB_v2.2.zip - 39 KB \nDownload RaptorDB_v2.3.zip - 39.6 KB \nD","createTime":"2012-03-09 15:39:33","dataReportQuery":"spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Paid-1-4126629-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Paid-1-4126629-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default","dataReportClick":"{\"mod\":\"popu_645\",\"index\":\"1\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fyanjin050518\u002F4126629\",\"strategy\":\"2~default~OPENSEARCH~Paid\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Paid-1-4126629-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1752188793655_20269\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","dataReportView":"{\"mod\":\"popu_645\",\"index\":\"1\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fyanjin050518\u002F4126629\",\"strategy\":\"2~default~OPENSEARCH~Paid\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Paid-1-4126629-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1752188793655_20269\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","type":"download"},{"url":"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Flcszhzs\u002F4621444","title":"JSP Simple Examples","desc":"JSP Simple Examples\nIndex 1.\n\nCreating a String\nIn jsp we \u003Cem\u003Ecreate\u003C\u002Fem\u003E a string as we does in a java. In jsp we can declare it inside the declaration directive or a \u003Cem\u003Escript\u003C\u002Fem\u003Elet directive.\n\nString Length\nIn java, Strings are objects that belong to class java.\u003Cem\u003Elan\u003C\u002Fem\u003Eg.String. A string is a sequence of simple characters. We can get the length of the string by using the method length() of java.\u003Cem\u003Elan\u003C\u002Fem\u003Eg.String.\n\nDeclaring string array in java\nAn array is the collection of same data type. Suppose if we have a declare an array of type String, then it will store only the String value not any other data type. When we have a closely related data of the same type and scope, it is better to declare it in an array.\n\n\nMultidimensional array java\nA two dimensional array can be thought as a grid of rows and columns. The first array will reflect to a row and the second one is column.\n\n\nint array\nArray is a collection of same data type. Suppose if we have declared an array of type int then the array will take only the int values and not any other data types. We can find find out the length of the variable by using the variable length\n.\n\nJSP string array\nString array cannot hold numbers or vice- versa. Arrays can only store the type of data \u003Cem\u003Especified\u003C\u002Fem\u003E at the time of declaring the array variable. \n\n\nCustom exceptions\nCustom Exception inherits the properties from the Exception class. Whenever we have declare our own exceptions then we call it custom exceptions.\n\n\nThrowing an exception\nAll methods use the throw statement to throw an exception. The throw statement requires a single argument a throwable object. Here is an example of a throw statement.\n\n\nArrayindexoutofboundsexception\nArrayIndexOutOfBoundException is thrown when we have to indicate that an array has been accessed with an illegal index.\n\n\nprintStackTrace in jsp\nprintStackTrace is a method of the Throwable class. By using this method we can get more information about the error process if we print a stack trace from the exception.\n\n\nRuntime Errors\nErrors are arised when there is any logic problem with the logic of the program.\n\n\nTry catch in jsp\nIn try block we write those code which can throw exception while code execution and when the exception is thrown it is caught inside the catch block.\n\nMultiple try catch\nWe can have more than one try\u002Fcatch block. The most specific exception which can be thrown is written on the top in the catch block following by the less specific least.\n\n\nNested try catch\nWe can declare multiple try blocks inside the try block. The most specific exception which can be thrown is written on the top in the catch block following by the less specific least.\n\n\nkilometers per liter to miles per gallon\nKilometers per liter : The distance traveled by a vehicle which is running on gasoline or diesel fuel in a kilometer.\nMiles per Gallon: The distance traveled by a vehicle which is running on gasoline or diesel fuel in a mile.\n\n\nAscii values table\nASCII stands for American Standard Code for Information Interchange. Computers can only understand numbers, so an ASCII code is the numerical representation of a character such as @, #, $, and so on. ASCII was developed when non- printing characters were rarely used.\n\n\nlife cycle of a jsp page\nLife of the the jsp page is just same as the servlet life cycle. After get translated the jsp file is just like a servlet.\n\n\n\nPage directive attributes\nA directive is a way to give special instructions to the container at page translation time. The page directive is written on the top of the jsp page.\n\n\nHtml tags in jsp\nIn this example we have used the html tag inside the println() method of the out implicit object which is used to write the content on the browser.\n\n\nPassword Controls\nIn this program we are going to know how the server determines whether the password entered by the user is correct or not. This whole process is controlled on the server side.\n\n\nMultiple forms in jsp\nThe form tag \u003Cem\u003Ecreate\u003C\u002Fem\u003Es a form for user input. A form can contain checkboxes, textfields, radio- buttons and many more. Forms are used to pass user- data to a \u003Cem\u003Especified\u003C\u002Fem\u003E URL which is \u003Cem\u003Especified\u003C\u002Fem\u003E in the action attribute of the form tag.\n\n\nInterface in jsp\nIn interface none of its methods are implemented. All the methods are abstract. There is no code associated with an interface. In an interface all the instance methods are public and abstract. Interfaces are always implemented in the class. They add extra behaviors to the class.\n\n\nInheritance in java with example\nInheritance is one of the concept of the Object- Oriented programming. It allows you to define a general class, and later more specialized classes by simply adding some new details.\n\n\nConstructor inheritance\nConstructors are used to \u003Cem\u003Ecreate\u003C\u002Fem\u003E objects from the class. Constructor declaration are just like method declaration, except that they do not have any return type and they use the name of the class. The compiler provides us with a default constructor to the class having no arguments.\n\n\nAbstract classes\nWe does not make a object of the abstract class. This class must be inherited. Unlike interface the abstract class may implement some of the methods defined in the class, but in this class at least one method should be abstract.\n\n\nUsing Super class Variables With Sub-classed Objects \nOne of the strong features of java is that it is follows a OOPs concept, and one of the feature of OOP in java is that, we can assign a subclass object or variable to the variable of the superclass type.\n\n\nLog files\nLog files keeps a records of internet protocol addresses (IP), Http status, date, time, bytes sent, bytes recieved, number of clicks etc.\n\n\nCalculate a factorial by using while loop\nIn this example we are going to find out the factorial of 12 by using the while loop. In while loop the loop will run until the condition we have given gets true.\n\n\nCalculating factorial\nAfter going through this example you will be understand how you can calculate the factorial by using recursion in jsp. To make a program on factorial, firstly it must be clear what is recursion.\n\n\nCelsius Fahrenheit\nCelsius is a unit to measure temperature scale on which water freezes at 0 degree and boiling point is 100 degree. This unit is discovered by Celsius in 1742, a Swedish astronomer and physicist, he has invented the centigrade, or Celsius thermometer divided between the freezing and boiling points of water into 100 parts.\n\n\ncomment in jsp\nIn a jsp we should always try to use jsp- style comments unless you want the comments to appear in the HTML. Jsp comments are converted by the jsp \u003Cem\u003Eengine\u003C\u002Fem\u003E into java comments in the source code of the servlet that implements the Jsp page.\n\n\nHtml tag inside out implicit object\nIn this program we are going to use a html tag inside a out object. out object is used to display the content on the browser. To make this program run use out object inside which define some html code along with the content you want to display on the browser\n\n\nJsp methods\nIn this example we are going to show you how we can declare a method and how we can used it. In this example we are making a method named as addNum(int i, int b) which will take two numbers as its parameters and return integer value.\n\n\nMultiple methods\nJsp is used mainly for presentation logic. In the jsp we can declare methods just like as we declare methods in java classes. Methods can be declared in either declaration directive or we can declare it in \u003Cem\u003Escript\u003C\u002Fem\u003Elet. If we declare method inside declaration directive, then the method is applicable in the whole page.\n\n\nPassing Array method\nArray is a collection of similar data type. It is one of the simplest data structures. Arrays holds equally sized data elements generally of the similar data type.\n\n\nTwo index\nIn this example we will show how we can use two indexes in a for loop. We can solve this problem by using for loop defined inside the \u003Cem\u003Escript\u003C\u002Fem\u003Elet directive.\n\n\nDate in JSP\nTo print a Date in JSP firstly we are importing a class named java.util.Date of the package java.util. This package is imported in the jsp page so that the Date class and its properties can accessed in the JSP page.\n\n\nIf- Else Ladder\nA ladder means a vertical set of steps. It is a computer generated list of pairings used in eliminations.\n\n\nNested If\nWe use the if condition to check if the particular condition is true then it should perform a certain task, and if a particular condition is not true then it should do some other tasks.\n\n\nQuintessential JSP\nQuintessential means representing the perfect example of a class or quality. It is pure and concentrated essence of a substance.\n\n\nInclude File JSP using directive and include action\n\u003C%@ include file = \" \"%\u003E: - This is include directive. This directive has only one attribute named as file, which is used to include a file in the jsp page at the translation time. \n\u003Cjsp:include page = \" \"\u003E:- This is known as the include standard action. This standard action is used to include a file at run time. This standard action is evaluated at the run time.\n\n\nSnoop in JSP\nIt mostly contains the request information, ServletContext initialization parameters, ServetContext attributes, request headers, response headers etc.\n\nsendRedirect In JSP\nsendRedirect() method is a method of HttpServletResponse interface. In sendRedirect() the object of request will be generated again with the location of page which will perform the request of the client.\n\n\nRequest Header in JSP\nWhenever an http client sends a request, it sends the request in the form of get or post method or any other HttpRequest methhods. It can also sends the headers with it.\n\n\nSpecific request headers in JSP\nWhenever an http client sends a request, it can also sends the headers with it. All the headers are optional except Content-length, which is required only for POST request.\n\n\nJava class in JSP\nTo use the class inside the jsp page we need to \u003Cem\u003Ecreate\u003C\u002Fem\u003E an object of the class by using the new operator. At last use the instance of the class to access the methods of the java file.\n\n\nSetting Colors in JSP\nIn Jsp also we can set the background color which we want, the font color can be changed. The table can be coloured . By using the colors code we can give colors according to our wish.\n\n\nSine Table in JSP\nMathematically, the sine of an angle is the ratio of the length of the opposite side to the length of the hypotenuse of an imaginary right triangle having that angle in it.\n\n\nApplet In Jsp\nApplets are small programs or applications written in java. These applets are those small programs that runs on web browsers, usually written in java. We can use the applets in jee also. In jee it runs on the context of web application on a client computer. \n\n\nCreating a Local Variable in JSP\nConsider a situation where we have to declare a variable as local, then we should declare the methods and variables in tag except the declaration directive.\n\n\nMethod in Declaration Tag\nAnything which will be declared inside declaration tag will be applicable within the whole application. We call this tag a Declaration Tag. The syntax of this tag is \u003C%! --------- %\u003E.\n \n\nForward a JSP Page\nThe request object goes to the controller then the controller decides by which jsp or servlet this request will be processed, then the request object is passed to that jsp or servlet and the output is displayed to the browser by the response object.\n\n\nRandom in JSP\nRandom numbers are the numbers that are determined entirely by chance. User does not have any control over the working of random numbers. random() is a method of Math class which extends java.\u003Cem\u003Elan\u003C\u002Fem\u003Eg package.\n\n\nJSP include directive\nBy using the include tag the file will be included in the jsp page at the translation time. In this example we have \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed a jsp file which has to be included in the other jsp file by using the tag \u003C%@ include file = \" \"%\u003E.\n\n\nLiterals in JSP\nLiterals are the values, such as a number or a text string, that are written literally as part of a program code. A literal is a expression of a value, including a number or a text string.\n\n\nPassing Parameter using \u003Cjsp: param\u003E\nRequest parameters can be passed by using \u003Cjsp: param\u003E. This tag contains two attributes: 1) name 2) value.\n\n\nTag Handler\nCustom tags are usually distributed in the form of a tag library, which defines a set of related custom tags and contains the objects that implement the tags. Custom tag libraries allow the java programmer to write code that provides data access and other services, and they make those features available to the jsp author in a simple to use XML- like fashion.\n\n\nUseBean\nSyntax: \u003Cjsp:useBean id= \"nameOfInstance\" scope= \"page | request | session | application\" class= \"package.class\" type= \"package.class \u003E \u003C\u002Fjsp:useBean\u003E.\n\n\nExpression \u003Cem\u003ELan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E In JSP\nEL means the expression \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E , it is a simple \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E for accessing data, it makes it possible to easily access application data stored in JavaBeans components.\n\n\nEL Basic Arithmetic\nAddition (+), subtraction (-), multiplication (*), division (\u002F or div), and modulus (% or mod) are all supported in Expression \u003Cem\u003ELan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E. Error conditions, like division by zero are handled easily by the expression \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E.","createTime":"2012-10-07 08:45:02","dataReportQuery":"spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-2-4621444-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-2-4621444-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default","dataReportClick":"{\"mod\":\"popu_645\",\"index\":\"2\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Flcszhzs\u002F4621444\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-2-4621444-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1752188793655_20269\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","dataReportView":"{\"mod\":\"popu_645\",\"index\":\"2\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Flcszhzs\u002F4621444\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-2-4621444-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1752188793655_20269\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","type":"download"},{"url":"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fivy1982\u002F6692043","title":"FastReport.v4.15 for.Delphi.BCB.Full.Source企业版含ClientServer中文修正版支持D4-XE5","desc":"FastReport.v4.15 for.Delphi.BCB.Full.Source企业版含ClientServer中文修正版支持Delphi 4-XE5 and C++Builder 6-XE5.\nD2010以上版本(D14_D19)安装必读\ndelphi2010以上版本(D14_D19)使用者安装时,请将res\\frccD14_D19.exe更名名为frcc.exe\nfrccD14_D19.exe是专门的delphi2010以上版本(D14_D19)编码器。其他低delphi版本,请使用frcc.exe\n\nFastReport® VCL is an add-on component that allows your application to generate reports quickly and efficiently. FastReport® provides all the tools necessary for developing reports, including a visual report designer, a reporting core, and a preview window. It can be used in Embarcadero (ex Bor\u003Cem\u003Elan\u003C\u002Fem\u003Ed and CodeGear) Delphi 4-XE5 and C++Builder 6-XE5.\n\nversion 4.15\n---------------\n+ Added Embarcadero RAD Studio XE5 support\n+ Added Internal components for FireDac database \u003Cem\u003Eengine\u003C\u002Fem\u003E\n+ fixed bug with images in PDF export for OSX viewers \n+ Added ability to set font charset to default in Style Editor\n- fixed duplex problem when printing several copies of the report\n- fixed problem with PNG images\n- fixed problem with TfrxPictureView transparent \n\nversion 4.14\n---------------\n+ Added Embarcadero RAD Studio XE4 support\n- [Lazarus] fixed bug with text output\n- [Lazarus] fixed bug with some visual controls in designer\n- [Lazarus] improved interface of the report preview and designer\n- [Lazarus] fixed bug with boolean propertyes in \u003Cem\u003Escript\u003C\u002Fem\u003E code and expressions\n- fixed bug with endless loop in TfrxRichView\n- fixed bug with Unicode in TfrxMemoView appeared in previous release\n- improved MAPI interface in TfrxExportMail export\n- fixed some problems with allpication styles XE2\u002FXE3\n- improved compatibility with Fast Report FMX\n\nversion 4.13\n---------------\n+ Added Lazarus Beta support starts from Fast Report Professionnal edition. Current version allows preview, print and design report template under Windows and Linux platform (qt).\n+ Added Embarcadero RAD Studio XE3 support\n- fixed compatibility with Fast Report FMX installed in the same IDE. This version can co exist with Fast Report FMX version at the same time.\n+ published \"Quality\" property of TfrxPDFExport object\n+ published \"UseMAPI\" property of TfrxExportMail object\n+ published \"PictureType\" property to ODF export\n- fixed bug with expressions in RichEdit\n- fixed bug in multi-column reports\n- fixed exception in the report designer\n- fixed bug with URLs in Open Document Text and Open Document Spreadsheet exports\n- fixed format string in XLS OLE export \n- fixed format string in XLS BIFF8 export \n- fixed output of the check boxes on the highlighted lines in PDF export\n- fixed bug with PDF anchors\n- fixed bug when using two or more macroses in memo\n\nversion 4.12\n---------------\n+ added support of Embarcadero Rad Studio EX2 (x32\u002Fx64)\n+ added export of Excel formulas in the BIFF export\n+ added export of external URLs in the PDF export\n+ added converter from Rave Reports ConverterRR2FR.pas\n+ added Cross.KeepRowsTogether property\n+ optimised merging cells in the BIFF export\n+ added property DataOnly to exports\n+ pictures format in all exports switched to PNG\n+ improved number formats processing in the BIFF export\n+ added property DataOnly to exports\n+ added property TfrxODFExport.SingleSheet\n+ added property TfrxSimpleTextExport.DeleteEmptyColumns\n+ added property TfrxBIFFExport.DeleteEmptyRows\n+ added progress bar to the BIFF export\n- fixed bug with frame for some barcode types\n- fixed wrong metafiles size in the EMF export\n- fixed processing of negative numbers in the OLE export\n- fixed bug in handling exceptions in the OLE export\n- fixed bug in creation of the progress bar (applicable to many exports)\n- fixed bug in the ODF export in strings processing\n- fixed bug in the OLE export in numbers formatting\n- fixed bug in the PDF export in rotating texts 90, 180 and 270 degrees\n- fixed bug in the ODF export in processing of headers and footers\n- fixed bug in the Text export in computing object bounds\n- fixed bug in the ODF export in UTF8 encoding\n- fixed hiding gridlines around nonempty cells in the BIFF export \n- fixed images bluring when exporting\n- fixed word wrapping in the Excel XML export\n\nversion 4.11\n---------------\n+ added BIFF8 XLS export filter\n+ added to ODF export the \u003Cem\u003ELan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E property\n+ [enterprise] added \"\u003Cem\u003Escript\u003C\u002Fem\u003Es\" folder for additional units (\"uses\" directive in report \u003Cem\u003Escript\u003C\u002Fem\u003E)\n+ [enterprise] added logs for scheduler (add info in scheduler.log)\n+ [enterprise] added property \"Reports\" - \"\u003Cem\u003EScript\u003C\u002Fem\u003Es\" in server configuration - set the path for \"uses\" directive in report \u003Cem\u003Escript\u003C\u002Fem\u003E\n+ [enterprise] added property \"Http\" - \"MaxSessions\" in server configuration - set the limit of maximum session threads, set 0 for unlimit\n+ [enterprise] added property \"Reports\" - \"MaxReports\" in server configuration - set the limit of maximum report threads, set 0 for unlimit\n+ [enterprise] added property \"Logs\" - \"SchedulerLog\" in server configuration - set the scheduler log file name\n+ [enterprise] added property \"Scheduler\" - \"Active\" in server configuration - enable of scheduler \n+ [enterprise] added property \"Scheduler\" - \"Debug\" in server configuration - enable writing of debug info in scheduler log\n+ [enterprise] added property \"Scheduler\" - \"StudioPath\" in server configuration - set the path to FastReport Studio, leave b\u003Cem\u003Elan\u003C\u002Fem\u003Ek for default\n- [enterprise] fixed bug with MIME types in http header (content-type)\n- [enterprise] fixed bug with default configuration (with missed config.xml)\n- [enterprise] fixed bug with error pages\n- fixed bug in XML export with the ShowProgress property\n- fixed bug in RTF export with font size in empty cells\n- fixed bug in ODF export with UTF8 encoding of the Creator field\n- fixed bug in XML export with processing special characters in strings\n- fixed bug in ODF export with properties table:number-columns-spanned, table:number-rows-spanned\n- fixed bug in ODF export with the background clNone color\n- fixed bug in ODF export with a style of table:covered-table-cell\n- fixed bug in ODF export with table:covered-table-cell duplicates\n- fixed bug in ODF export with excessive text:p inside table:covered-table-cell\n- fixed bug in ODF export with \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E styles\n- fixed bug in ODF export with spaces and tab symbols\n- fixed bug in ODF export with styles of number cells\n- fixed bug in ODF export with the background picture\n- fixed bug in ODF export with charspacing\n- fixed bug in ODF export with number formatting\n- fixed bug in ODF export with table-row tag\n- fixed bug in XLS(OLE) export with numbers formatting\n- fixed bug in RTF export with processing RTF fields\n- fixed bug with processing special symbols in HTML Export\n- fixed bug with UTF8 encoding in ODF export\n- fixed bug in PDF export with underlined, struck-out and rotated texts\n\nversion 4.10\n---------------\n+ added support of Embarcadero Rad Studio XE (Delphi EX\u002FC++Builder EX)\n+ added support of TeeChart 2010 packages (new series type aren't support in this release)\n+ added a property TruncateLongTexts to the XLS OLE export that allows to disable truncating texts longer than a \u003Cem\u003Especified\u003C\u002Fem\u003E limit\n+ added option EmbedProt which allows to disable embedding fonts into an encrypted PDF file\n+ added TfrxDateEditControl.WeekNumbers property\n- fixed bug in XML and PDF exports with Korean charmap\n- fixed bug in the XLS XML export about striked-out texts\n- fixed bug about exporting an empty page via the XLS OLE export\n- fixed bug in the PDF export about coloring the background of pages\n- fixed bug in embedded designer when using break point in \u003Cem\u003Escript\u003C\u002Fem\u003E\n- fixed bug with lost of focus in font size combo-box in designer\n- fixed bug with truncate of font size combo-box in Windows Vista\u002F7 in designer (lost of vertical scroll bar)\n- fixed bug when lost file name in inherited report\n- fixed bug in multi-page report with EndlessHeight\u002FEndlessWidth\n- fixed bug wit TfrxHeader.ReprintOnNewpage and KeepTogether\n- fixed bug in multi-column report with child bands\n- improved split mechanism (added TfrxStretcheable.HasNextDataPart for complicated data like RTF tables)\n- improved crosstab speed when using repeat band with crosstab object\n\nversion 4.9\n---------------\n+ added outline to PDF export\n+ added anchors to PDF export\n- fixed bug with embedded TTC fonts in PDF export\n+ added an ability to \u003Cem\u003Ecreate\u003C\u002Fem\u003E multiimage TIFF files\n+ added export headers\u002Ffooters in ODF export\n+ added ability to print\u002Fexport transparent pictures (properties TfrxPictureView.Transparent and TfrxPictureView.TransparentColor) (PDF export isn't supported)\n+ added new \"split to sheet\" modes for TfrxXMLExport \n+ added support of \u002FPAGE tag in TfrxRichView, \u003Cem\u003Eengine\u003C\u002Fem\u003E automatically break report pages when find \u002FPAGE tag \n+ added ability to hide Null values in TfrxChartView (TfrxChartView.IgnoreNulls = True)\n+ added ability to set any custom page order for printing (i.e. 3,2,1,5,4 )\n+ [enterprise] added variables \"AUTHLOGIN\" and \"AUTHGROUP\" inside the any report \n+ [enterprise] now any report file can be matched with any (one and more) group, these reports are accessible only in matched groups\n+ [enterprise] now you can set-up cache delays for each report file (reports.xml)\n+ [enterprise] added new properties editor for reports in Configuration utility (see Reports tab)\n+ [enterprise] added property \"Xml\" - \"SplitType\" in server configuration - allow to select split on pages type between none\u002Fpages\u002Fprintonprev\u002Frowscount\n+ [enterprise] added property \"Xml\" - \"SplitRowsCount\" in server configuration - sets the count of rows for \"rowscount\" split type\n+ [enterprise] added property \"Xml\" - \"Extension\" in server configuration - allow select between \".xml\" and \".xls\" extension for output file\n+ [enterprise] added property \"Html\" - \"URLTarget\" in server configuration - allow select the target attribute for report URLs\n+ [enterprise] added property \"ReportsFile\" - path to file with reports to groups associations and cache delays \n+ [enterprise] added property \"ReportsListRenewTimeout\" in server configuration\n+ [enterprise] added property \"ConfigRenewTimeout\" in server configuration\n+ [enterprise] added property \"MimeType\" for each output format in server configuration \n+ [enterprise] added property \"BrowserPrint\" in server configuration - allow printing by browser, added new template nav_print_browser.html\n+ [enterprise] added dynamic file name generation of resulting formats (report_name_date_time)\n* [enterprise] SERVER_REPORTS_LIST and SERVER_REPORTS_HTML variables (list of available reports) depend from user group (for internal authentification)\n+ added drawing shapes in PDF export (not bitmap)\n+ added rotated text in PDF export (not bitmap)\n+ added \u003Cem\u003EEngine\u003C\u002Fem\u003EOptions.IgnoreDevByZero property allow to ignore division by zero exception in expressions\n+ added properties TfrxDBLookupComboBox.DropDownWidth, TfrxDBLookupComboBox.DropDownRows\n+ added event TfrxCustomExportFilter.OnBeginExport\n+ added ability to decrease font size in barcode object\n+ added ability to inseret FNC1 to \"code 128\" barcode\n+ added event TfrxPreview.OnMouseDown\n+ added support of new unicode-PDF export in D4-D6 and BCB4-BCB6\n* improved AddFrom method - anchor coping\n- fixed bug with WordWrap in PDF export\n- fixed bug with underlines in PDF export\n- fixed bug with rounded rectangles in PDF export\n- fixed CSV export to fit to the RFC 4180 specification\n- fixed bug with strikeout text in PDF export\n- fixed bug with incorrect export of TfrxRichView object in RTF format (wrong line spacing)\n- [enterprise] added critical section in TfrxServerLog.Write\n- fixed bug with setting up of the Protection Flags in the PDF export dialog window\n- fixed bug in PDF export (file structure)\n- fixed bug with pictures in Open Office Writer (odt) export\n- [enterprise] fixed bug with TfrxReportServer component in Delphi 2010\n- fixed minor errors in Embarcedero RAD Studio 2010\n- fixed bug with endless loop with using vertical bands together with page header and header with ReprintOnNewPage\n- fixed bug when using \"Keeping\" and Cross tables (incorrect cross transfer)\n- fixed bug with [CopyName#] macros when use \"Join small pages\" print mode\n- fixed bug when try to split page with endless height to several pages (NewPage, StartNewPage)\n- fixed bug with empty line TfrxRichView when adding text via expression\n- fixed bug when Footer prints even if main band is invisible (FooterAfterEach = True)\n- fixed resetting of Page variable in double-pass report with TfrxCrossView\n- fixed bug with loosing of aligning when split TfrxRichView\n- fixed buzz in reports with TfrxRichView when using RTF 4.1\n\nversion 4.8\n---------------\n+ added support of Embarcadero Rad Studio 2010 (Delphi\u002FC++Builder)\n+ added TfrxDBDataset.BCDToCurrency property\n+ added TfrxReportOptions.HiddenPassword property to set password silently from code\n+ added TfrxADOConnection.OnAfterDisconnect event \n+ added TfrxDesigner.MemoParentFont property\n+ added new TfrxDesignerRestriction: drDontEditReport\u003Cem\u003EScript\u003C\u002Fem\u003E and drDontEditInternalDatasets\n+ adedd checksum calculating for 2 5 interleaved barcode\n+ added TfrxGroupHeader.ShowChildIfDrillDown property \n+ added TfrxMailExport.OnSendMail event \n+ added RTF 4.1 support for TfrxRichText object\n+ [enterprise] added Windows Authentification mode\n+ added confirmation reading for TfrxMailExport\n+ added TimeOut field to TfrxMailExport form \n+ added ability to use keeping(KeepTogether\u002FKeepChild\u002FKeepHeader) in multi-column report\n+ added ability to split big bands(biggest than page height) by default \n* [enterprise] improved CGI for IIS\u002FApache server\n* changed PDF export (D7 and upper): added full unicode support, improved performance, decreased memory requirements\n old PDF export \u003Cem\u003Eengine\u003C\u002Fem\u003E saved in file frxExportPDF_old.pas\n- changed inheritance mechanism, correct inherits of linked objects (fixups)\n- fixed bug with Mirror Mrgins in RTF, HTML, XLS, XML, OpenOffice exports\n- fixed bug when cross tab cut the text in corner, when corner height greater than column height\n- [fs] improved \u003Cem\u003Escript\u003C\u002Fem\u003E compilation\n- improved WatchForm TListBox changet to TCheckListBox\n- improved AddFrom method - copy outline\n- Improved functional of vertical bands, shows memos placed on H-band which doesn't across VBand, also calculate expression inside it and call events (like in FR2)\n- Improved unsorted mode in crosstab(join same columns correctly)\n- Improved converter from Report Builder\n- Improved TfrxDesigner.OnInsertObject, should call when drag&drop field from data tree\n- improved DrillDownd mechanism, should work correct with master-detail-subtetail nesting \n- fixed bug with DownThenAcross in Cross Tab\n- fixed several bugs under CodeGear RAD Studio (Delphi\u002FC++Builder) 2009 \n- fixed bug with emf in ODT export\n- fixed bug with outline when build several composite reports in double pass mode\n- fixed bug when group doesn't fit on the whole page\n- fixed \"Page\" and \"Line\" variables inside vertical bands\n- fixed bug with using KeepHeader in some cases\n- fixed bug with displacement of subreport when use PrintOnParent property in some cases\n- fixed small memory leak in subreports\n- fixed problem with PageFooter and ReportSymmary when use PrintOnPreviousPage property\n- fixed bug when designer shows commented functions in object inspector\n- fixed bug when designer place function in commented text block\n- fixed bug when \u003Cem\u003EEngine\u003C\u002Fem\u003E try to split non-stretcheable view and gone to endless loop\n- fixed bug with HTML tags in memo when use shot text and WordWrap\n- [enterprise] fixed bug with variables lost on refresh\u002Fexport\n- fixed bug whih PDF,ODT export in Delphi4 and CBuilder4\n- fixed bug with some codepage which use two bytes for special symbols (Japanese ans Chinese codepages)\n- fixed bug when \u003Cem\u003Eengine\u003C\u002Fem\u003E delete first space from text in split Memo\n- fixed bug in multi-column page when band overlap stretched PageHeader\n- fixed bug with using ReprintOnNewPage\n\nversion 4.7\n---------------\n+ CodeGear RAD Studio (Delphi\u002FC++Builder) 2009 support\n+ [enterprise] enchanced error de\u003Cem\u003Escript\u003C\u002Fem\u003Eion in logs\n+ added properties TfrxHTMLExport.HTMLDocumentBegin: TStrings, \n TfrxHTMLExport.HTMLDocumentBody: TStrings, TfrxHTMLExport.HTMLDocumentEnd: TStrings\n+ improved RTF export (with line spacing, vertical gap etc)\n+ added support of Enhanced Metafile (EMF) images in Rich Text (RTF), Open Office (ODS), Excel (XLS) exports\n+ added OnAfter\u003Cem\u003EScript\u003C\u002Fem\u003ECompile event \n+ added onLoadRecentFile Event\n+ added C++ Builder demos\n+ added hot-key Ctrl + mouseWheel - Change scale in designer\n+ added TfrxMemoView.AnsiText property\n- fixed bug in RTF export with EMF pictures in OpenOffice Writer\n- fixed some multi-thread isuues in \u003Cem\u003Eengine\u003C\u002Fem\u003E, PDF, ODF exports\n- [enterprise] fixed integrated template of report navigator\n- [enterprise] fixed bug with export in Internet Explorer browser\n- fixed bug with font size of dot-matix reports in Excel and XML exports\n- fixed bug in e-mail export with many addresses\n- fixed bug in XLS export (with fast export unchecked and image object is null)\n- [enterprise] fixed bug in TfrxReportServer.OnGetVariables event\n- fixed bug in Calcl function\n- fixed memory leak in Cross editor\n- fixed progress bar and find dialog bug in DualView\n- fixed bug in PostNET and ean13 barcodes\n- fixed bug with TruncOutboundText in Dot Matrix report \n- fixed bugs with break points in syntaxis memo\n- improved BeforeConnect event in ADO \n- fixed bug in inhehited report with internal dataset\n- fixed bug in TfrxPanelControl with background color(Delphi 2005 and above)\n\n\nversion 4.6\n---------------\n+ added & , < , > to XML reader\n+ added \u003Cnowrap\u003E tag, the text concluded in tag is not broken by WordWrap, it move entirely \n+ added ability to move band without objects (Alt + Move)\n+ added ability to output pages in the preview from right to left (\"many pages\" mode), for RTL \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003Es(PreviewOptions.RTLPreview) \n+ added ability to storing picture cache in \"temp\" file (PreviewOptions.PictureCacheInFile)\n+ added \u003Cem\u003EEngine\u003C\u002Fem\u003EOptions.UseGlobalDataSetList (added for multi-thread applications) - set it to False if you don't want use Global DataSet list(use Report.EnabledDataSet.Add() to add dataset in local list) \n+ added new property Hint for all printed objects, hints at the dialog objects now shows in StatusBar \n+ added new property TfrxDBLookupComboBox.AutoOpenDataSet (automatically opens the attached dataset after onActivate event) \n+ added new property TfrxReportPage.PageCount like TfrxDataBand.RowCount\n+ added new property WordWrap for dialog buttons (Delphi 7 and above). \n+ added sort by name to data tree\n+ added TfrxDesigner.TemplatesExt property\n+ added TfrxStyles class in \u003Cem\u003Escript\u003C\u002Fem\u003E rtti\n+ changes in the Chart editor: ability to change the name of the series, ability to move \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed series, other small changes \n+ [enterprise] added configurations values refresh in run-time \n+ [enterprise] added new demo \\Demos\\ClientServer\\ISAPI\n+ [enterprise] added output to server printers from user browser (see config.xml \"AllowPrint\", set to \"no\" by default), note: experimental feature\n+ [enterprise] added reports list refresh in run-time\n+ [enterprise] added templates feature\n+ [enterprise] improved speed and stability\n+ [fs] added Tfs\u003Cem\u003EScript\u003C\u002Fem\u003E.IncludePath property\n+ [fs] added Tfs\u003Cem\u003EScript\u003C\u002Fem\u003E.UseClassLateBinding property \n+ [fs] fixed type casting from variant(string) to integer\u002Ffloat\n- changes in report inherit: FR get relative path from current loaded report(old reports based on application path works too)\n- corrected module for converting reports from Report Builder\n- fixed bug in CrossTab when set charset different from DEFAULT_CHARSET\n- fixed bug in RTF export with some TfrxRichView objects\n- fixed bug when print on \u003Cem\u003Elan\u003C\u002Fem\u003Edscape orientation with custom paper size\n- fixed bug when use network path for parent report\n- fixed bug with Band.Allowslit = True and ColumnFooter\n- fixed bug with drawing subreport on stretched band\n- fixed bug with embedded fonts in PDF export\n- fixed bug with long ReportTitle + Header + MaterData.KeepHeader = true\n- fixed bug with minimizing of Modal designer in BDS2005 and above\n- fixed bug with paths in HTML export \n- fixed bug with RTL in PDF export\n- fixed bug with SubReport in multi column page\n- fixed bug with Subreport.PrintOnParent = true in inherited report\n- fixed bug with SYMBOL_CHARSET in PDF export\n- fixed bug with the addition of datasets by inheritance report \n- fixed bug with width calculation when use HTML tags in memo \n- fixed compatibility with WideStrings module in BDS2006\u002F2007\n- fixed flicking in preview when use OnClickObject event\n- fixed free space calculation when use PrintOnPreviousPage\n- fixed preview bug with winXP themes and in last update\n- fixed subreports inherit\n- Thumbnail and Outline shows at right side for RTL \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003Es \n- [fs] fixed bug with late binding\n\nversion 4.5\n---------------\n+ added ConverterRB2FR.pas unit for converting reports from Report Builder to Fast Report\n+ added ConverterQR2FR.pas unit for converting reports from QuickReport to FastReport\n+ added support of multiple attachments in e-mail export (html with images as example)\n+ added support of unicode (UTF-8) in e-mail export\n+ added ability to change templates path in designer\n+ added OnReportPrint \u003Cem\u003Escript\u003C\u002Fem\u003E event\n+ added PNG support in all version (start from Basic)\n+ added TfrxDMPMemoView.TruncOutboundText property - truncate outbound text in matrix report when WordWrap=false\n+ added new frames styles fsAltDot and fsSquare\n+ added new event OnPreviewDblClick in all TfrxView components\n+ added ability to call dialogs event after report run when set DestroyForms = false\n+ added ability to change AllowExpressions and HideZeros properties in cross Cells (default=false)\n+ added IgnoreDupParams property to DB components\n+ added auto open dataset in TfrxDBLookupComboBox\n+ added new property TfrxADOQuery.LockType\n+ added define DB_CAT (frx.inc) for grouping DB components\n+ added TfrxPictureView.HightQuality property(draw picture in preview with hight quality, but slow down drawing procedure)\n+ [FRViewer] added comandline options \"\u002Fprint filename\" and \"\u002Fsilent_print filename\"\n+ added unicode input support in RichEditor\n+ added new define HOOK_WNDPROC_FOR_UNICODE (frx.inc) - set hook on GetMessage function for unicode input support in D4-D7\u002FBCB4-BCB6\n+ added ability chose path to FIB packages in \"Recompile Wizard\"\n+ added new function TfrxPreview.GetTopPosition, return a position on current preview page\n+ added new hot-keys to Code Editor - Ctrl+Del delete the word before cursor, Ctrl+BackSpace delete the word after cursor(as in Delhi IDE) \n+ added \"MDI Designer\" example\n- all \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E resources moved to UTF8, XML\n- fixed bug with html tags [sup] and [sub]\n- fixed width calculation in TfrxMemoView when use HTML tags\n- fixed bug with suppressRepeated in Vertical bands\n- fixed bug when designer not restore scrollbars position after undo\u002Fredo\n- fixed visual bug in toolbars when use Windows Vista + XPManifest + Delphi 2006 \n- fixed bug in CalcHeight when use negative LineSpace\n- fixed bug in frx2xto30 when import query\u002Ftable components, added import for TfrDBLookupControl component\n- fixed bug with Cross and TfrxHeader.ReprintOnNewPage = true\n- fixed converting from unicode in TfrxMemoView when use non default charset\n- [fs] fixed bug with \"in\" operator\n- fixed bug with aggregate function SUM \n- fixed bug when use unicode string with [TotalPages#] in TfrxMemoView\n- fixed bug with TSQLTimeStampField field type\n- fixed designer dock-panels(\"Object Inspector\", \"Report Tree\", \"Data Tree\") when use designer as MDI or use several non-modal designer windows\n- fixed bug with hide\u002Fshow dock-panels(\"Object Inspector\", \"Report Tree\", \"Data Tree\"), now it restore size after hiding\n- fixed bug in XML\u002FXLS export - wrong encode numbers in memo after CR\u002FLF\n- fiexd bug in RTF export \n- fixed bug with undo\u002Fredo commands in previewPages designer\n- fixed bug with SuppressRepeated when use KeepTogether in group\n- fixed bug with SuppressRepeated on new page all events fired twice(use \u003Cem\u003EEngine\u003C\u002Fem\u003E.Second\u003Cem\u003EScript\u003C\u002Fem\u003Ecall to determinate it)\n\n\nversion 4.4\n---------------\n+ added support for CodeGear RAD Studio 2007\n+ improved speed of PDF, HTML, RTF, XML, ODS, ODT exports\n+ added TfrxReportPage.BackPictureVisible, BackPicturePrintable properties\n+ added rtti for the TfrxCrossView.CellFunctions property\n+ added properties TfrxPDFExport.Keywords, TfrxPDFExport.Producer, TfrxPDFExport.HideToolbar,\n TfrxPDFExport.HideMenubar, TfrxPDFExport.HideWindowUI, TfrxPDFExport.FitWindow, \n TfrxPDFExport.CenterWindow, TfrxPDFExport.PrintScaling\n+ added ability recompile frxFIB packages in \"recompile wizard\"\n+ added ability to set color property for all teechart series which support it\n+ added, setting frame style for each frame line in style editor\n+ added TfrxPreview.Locked property and TfrxPreview.DblClick event\n+ added 'invalid password' exception when load report without crypt\n+ added new parameter to InheritFromTemplate (by default = imDefault) imDefault - show Error dialog, imDelete - delete duplicates, imRename - rename duplicates\n+ added property TfrxRTFExport.AutoSize (default is \"False\") for set vertical autosize in table cells\n* redesigned dialog window of PDF export\n* improved WYSIWYG in PDF export\n- fixed bug, the PageFooter band overlap the ReportSummary band when use EndlessHeight\n- fixed bug with lage paper height in preview\n- fixed bug with outline and encryption in PDF export\n- fixed bug with solid arrows in PDF export\n- fixed bug when print TfrxHeader on a new page if ReprintOnNewPage = true and KeepFooter = True\n- fixed bug when used AllowSplit and TfrxGroupHeader.KeepTogether \n- fixed page numbers when print dotMatrix report without dialog\n- fixed bug with EndlessHeight in multi-columns report\n- fixed font dialog in rich editor\n- [fs] fixed bug when \u003Cem\u003Ecreate\u003C\u002Fem\u003E TWideStrings in \u003Cem\u003Escript\u003C\u002Fem\u003E code\n- fixed bug with dialog form when set TfrxButtonControl.Default property to True\n- fixed twice duplicate name error in PreviewPages designer when copy - past object\n- fixed bug with Preview.Clear and ZmWholePage mode\n- fixed bug with using \"outline\" together \"embedded fonts\" options in PDF export\n- fixed multi-thread bug in PDF export\n- fixed bug with solid fill of transparent rectangle shape in PDF export\n- fixed bug with export OEM_CODEPAGE in RTF, Excel exports\n- fixed bug with vertical size of single page in RTF export\n- fixed bug with vertical arrows in PDF export\n- fixed memory leak with inherited reports\n\n\nversion 4.3\n---------------\n+ added support for C++Builder 2007\n+ added encryption in PDF export\n+ added TeeChart Pro 8 support\n+ added support of OEM code page in PDF export\n+ added TfrxReport.CaseSensitiveExpressions property\n+ added \"OverwritePrompt\" property in all export components\n+ improved RTF export (WYSIWYG)\n+ added support of thai and vietnamese charsets in PDF export\n+ added support of arrows in PDF export\n* at inheritance of the report the \u003Cem\u003Escript\u003C\u002Fem\u003E from the report of an ancestor is added to the current report (as comments)\n* some changes in PDF export core\n- fixed bug with number formats in Open Document Spreadsheet export\n- fixed bug when input text in number property(Object Inspector) and close Designer(without apply changes)\n- fixed bug in TfrxDBDataset with reCurrent\n- fixed bug with memory leak in export of empty outline in PDF format\n- line# fix (bug with subreports)\n- fixed bug with edit prepared report with rich object\n- fixed bug with shadows in PDF export\n- fixed bug with arrows in designer\n- fixed bug with margins in HTML, RTF, XLS, XML exports\n- fixed bug with arrows in exports\n- fixed bug with printers enumeration in designer (list index of bound)\n- fixed papersize bug in inherited reports\n\n\nversion 4.2\n---------------\n+ added support for CodeGear Delphi 2007 \n+ added export of html tags in RTF format \n+ improved split of the rich object\n+ improved split of the memo object\n+ added TfrxReportPage.ResetPageNumbers property\n+ added support of underlines property in PDF export\n* export of the memos formatted as fkNumeric to float in ODS export\n- fixed bug keeptogether with aggregates\n- fixed bug with double-line draw in RTF export\n- fix multi-thread problem in PDF export\n- fixed bug with the shading of the paragraph in RTF export when external rich-text was inserted\n- fixed bug with unicode in xml\u002Fxls export\n- fixed bug in the crop of page in BMP, TIFF, Jpeg, Gif\n- \"scale\" printmode fixed\n- group & userdataset bugfix\n- fixed cross-tab pagination error\n- fixed bug with round brackets in PDF export\n- fixed bug with gray to black colors in RTF export\n- fixed outline with page.endlessheight\n- fixed SuppressRepeated & new page\n- fixed bug with long time export in text format\n- fixed bug with page range and outline in PDF export\n- fixed undo in code window\n- fixed error when call DesignReport twice\n- fixed unicode in the cross object\n- fixed designreportinpanel with dialog forms\n- fixed paste of DMPCommand object\n- fixed bug with the export of null images\n- fixed code completion bug\n- fixed column footer & report summary problem\n\n\n\nversion 4.1\n---------------\n+ added ability to show designer inside panel (TfrxReport.DesignReportInPanel method). See new demo Demos\\EmbedDesigner\n+ added TeeChart7 Std support\n+ [server] added \"User\" parameter in TfrxReportServer.OnGetReport, TfrxReportServer.OnGetVariables and TfrxReportServer.OnAfterBuildReport events\n+ added Cross.KeepTogether property\n+ added TfrxReport.PreviewOptions.PagesInCache property\n- barcode fix (export w\u002Fo preview bug)\n- fixed bug in preview (AV with zoommode = zmWholePage)\n- fixed bug with outline + drilldown\n- fixed datasets in inherited report\n- [install] fixed bug with library path set up in BDS\u002FTurbo C++ Builder installation\n- fixed pagefooter position if page.EndlessWidth is true\n- fixed shift bug\n- fixed design-time inheritance (folder issues)\n- fixed chm help file path\n- fixed embedded fonts in PDF\n- fixed preview buttons\n- fixed bug with syntax highlight\n- fixed bug with print scale mode\n- fixed bug with control.Hint\n- fixed edit preview page\n- fixed memory leak in cross-tab\n\n\n\nversion 4.0 initial release\n---------------------\nReport Designer:\n- new XP-style interface\n- the \"Data\" tab with all report datasets\n- ability to draw diagrams in the \"Data\" tab\n- code completion (Ctrl+Space)\n- breakpoints\n- watches\n- report templates\n- local guidelines (appears when you move or resize an object)\n- ability to work in non-modal mode, mdi child mode\n\nReport Preview:\n- thumbnails\n\nPrint:\n- split a big page to several small pages\n- print several small pages on one big\n- print a page on a \u003Cem\u003Especified\u003C\u002Fem\u003E sheet (with scale)\n- duplex handling from print dialogue\n- print copy name on each printed copy (for example, \"First copy\", \"Second copy\")\n\nReport Core:\n- \"endless page\" mode\n- images handling, increased speed\n- the \"Reset page numbers\" mode for groups\n- reports crypting (Rijndael algorithm)\n- report inheritance (both file-based and dfm-based)\n- drill-down groups\n- frxGlobalVariables object\n- \"cross-tab\" object enhancements:\n - improved cells appearance\n - cross elements visible in the designer\n - fill corner (ShowCorner property)\n - side-by-side crosstabs (NextCross property)\n - join cells with the same value (JoinEqualCells property)\n - join the same string values in a cell (AllowDuplicates property)\n - ability to put an external object inside cross-tab\n - AddWidth, AddHeight properties to increase width&height of the cell\n - AutoSize property, ability to resize cells manually\n- line object can have arrows\n- added TfrxPictureView.FileLink property (can contain variable or a file name)\n- separate settings for each frame line (properties Frame.LeftLine,\nTopLine, RightLine, BottomLine can be set in the object inspector)\n- PNG images support (uncomment {$DEFINE PNG} in the frx.inc file)\n- Open Document Format for Office Applications (OASIS) exports, spreadsheet (ods) and text (odt)\n\nEnterprise components:\n- Users\u002FGroups security support (see a demo application Demos\\ClientServer\\UserManager)\n- Templates support\n- Dynamically refresh of configuration, users\u002Fgroups\n\nD2010以上版本(D14_D19)安装必读\ndelphi2010以上版本(D14_D19)使用者安装时,请将res\\frccD14_D19.exe更名名为frcc.exe\n\nfrccD14_D19.exe是专门的delphi2010以上版本(D14_D19)编码器。其他低delphi版本,请使用frcc.exe","createTime":"2013-12-10 16:29:40","dataReportQuery":"spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-3-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-3-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default","dataReportClick":"{\"mod\":\"popu_645\",\"index\":\"3\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fivy1982\u002F6692043\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-3-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1752188793655_20269\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","dataReportView":"{\"mod\":\"popu_645\",\"index\":\"3\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fivy1982\u002F6692043\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-3-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1752188793655_20269\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","type":"download"},{"url":"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Ffanshuzone\u002F196338","title":"cuteEditor6.0","desc":"\u003Cbr\u002F\u003ECuteEditor功能特点 \u003Cbr\u002F\u003E是什么使CuteEditor成为Html在线编辑器的领航者?除了其强大的功能和方便的使用, 这里还有一些顶尖的技术因素是CuteEditor编辑器成为你编辑和发布Web内容的最佳选择: \u003Cbr\u002F\u003E 界面简洁加载速度快 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E由于才有了很多优化方法,所以CuteEditor非常简单、小巧、装载速度快,但仍然保持功能强大、执行效率高的特点。 \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 跨浏览器,跨平台的所见即所得在线html编辑器 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E兼容市面上最流行的ie5.5+,firefox1.0+,mozilla1.3+, netscape7+和Safari(1.3+)浏览器,并且包括Mac和Linux操作平台。 \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E CuteEditor遵循Web标准,没有类似 \u003CFONT\u003E 这种标签 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E你的Html编辑器还在使用类似 \u003CFONT\u003E这种标签么? CuteEditor会帮助你构建用户最新Web标准的html代码标签,自动生成简洁的HTML\u002FXHTML代码。 为什么要遵循Web标准? \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E学习应用Web标准有很多益处,下面给几个简单例子:\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E获得好的搜索引擎排名: The separation of content and presentation makes the content represent a larger part of the total file size. Combined with semantic markup this will improve search \u003Cem\u003Eengine\u003C\u002Fem\u003E rankings. \u003Cbr\u002F\u003E更快的下载和加载网页: Less HTML results in smaller file sizes and quicker downloads. Modern web browsers render pages faster when they are in their standards mode than when they are in their backwards compatible mode. \u003Cbr\u002F\u003E适应未来网页浏览器: When you use defined standards and valid code you future-proof your documents by reducing the risk of future web browsers not being able to understand the code you have used. \u003Cbr\u002F\u003E代码编写简单,维护方便: Using more semantic and structured HTML makes it easier and quicker to understand code \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed by somebody else. \u003Cbr\u002F\u003E适应其他设备: Semantic HTML, where structure is separated from presentation, makes it easier for screen readers and alternative browsing devices to interpret the content. \u003Cbr\u002F\u003E非常好的适应性: A semantically marked up document can be easily adapted to print and alternative browsing devices, like handheld computers and cellular phones, just by linking to a different CSS file. You can also make site-wide changes to presentation by editing a single file. \u003Cbr\u002F\u003ERead more:\u003Cbr\u002F\u003E我的网页符合Web标准,你的呢? \u003Cbr\u002F\u003E 能自动清理HTML代码中Word标记 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003EWhen text is pasted from Microsoft Word allot of unnecessary word specific markup is carried across. This can result in web pages that take an unnecessarily long time to download. The Paste from Word button solves this by removing word markup before pasting the text into your page. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持W3C WAI和section 508的无障碍引导 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor optional accessibility settings ensure your site complies with Section 508, so people with disabilities can have full access to your content.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 输出的HTML或不错的XHTML供你选择 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor supports output well-formed XHTML. Your choice of XHTML 1.0 or HTML 4.01 output. \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 无限次的撤销\u002F恢复\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EMany of the other editors on the market cannot undo or redo certain actions, and certain table operations - such as cell merge or column deletion. Cute Editor 4.0 has a new custom undo\u002Fredo implementation to make you can now safely undo those actions. \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 多语言支持,通过简单设置XML即可完成 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EAll labels, buttons, tooltips and messages are located in external XML files, so that the \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E of the editor can be switched with a single property. You can also \u003Cem\u003Ecreate\u003C\u002Fem\u003E a new \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E in a matter of minutes. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 完全支持页面编辑(从 \u003CHTML\u003E 到 \u003C\u002FHTML\u003E) (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor 4.0 allows you to edit a full HTML page, including \u003Ctitle\u003E, \u003C!DOCTYPE...\u003E and some other options. You can also insert Form elements (checkbox, button, textarea, etc.) and modify certain properties of the element.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 默认换行为软回车 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EMost other editors insert double line returns which can be annoying for clients who are used to editing in Microsoft Word. CuteEditor can be configured to use \u003Cdiv\u003E, \u003Cbr\u003E or \u003Cp\u003E tags when you press enter. In either mode \u003Cbr\u003E tags can be \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed by using shift+enter.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持代码缩进和小写字母\u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor displays nicely indented code in the HTML mode and the generating HTML tags and Attributes are in lower case. This is very convenient and important for the advanced users. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持全屏编辑 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EIt does not open a new window, instead it will resize to fit the browser screen. Edit in full screen mode, maximizing your available space. \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 没有打开较慢的Java或ActiveX组件\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E100% DHTML, Java\u003Cem\u003EScript\u003C\u002Fem\u003E ASP.Net code. There are no slow Java or ActiveX components to worry about and everything is handled in the browser! \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持相对地址和URL自动关联(Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EWith Cute Editor, you have the choice of using either a relative or absolute URL. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 部署简单\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EThe perfect addition to your content management system! Only a couple lines of code , you don't need to be an expert. Allows you to add an online HTML editing functionality that works with standard HTML form.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 可以简单的通过API隐藏按钮和标签 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor allows developers to set the image directory, set the controls width, disable image uploading and deleting, restrict access to the source\u002Fpreview tabs, hide buttons and lists that you don't want your clients to see or access. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持图片的文字环绕 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003ELocate the image you want to wrap text around, and click any justify button in the toolbar. The image will float to the desired direction. Text will be positioned around the image. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持文件下载 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003EYou can upload document files, \u003Cem\u003Ecreate\u003C\u002Fem\u003E a link from your HTML content to the document files (zip files, ppt files...). \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E CSS型皮肤 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor provides several built in themes that are ready to use. Developers can completely change the appearance of the toolbar and the dialogs by simply modifying the supplied classes and images. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 高级的表格管理\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E\u003Cem\u003ECreate\u003C\u002Fem\u003E and modify tables and table cells. Set their border color, alignment, cellspacing and more! Once you've \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed a table, simply right click inside of it and use the handy popup menu to change its attributes. \u003Ccaption\u003E,\u003Csummary\u003E,\u003Cthead\u003E,\u003Ctfoot\u003E,\u003Cth\u003E tags are supported. \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 图片插入和自动上传\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EBuilt-in thumbnail generator. Thumbnail images are dynamically \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed; Supports upload new images. Paging - specify how many images. Support auto resize images.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 具有特殊的对话框\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EWith Style builder dialog box you can apply CSS style attributes directly to any HTML elements on your Web page.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持内容模板 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EThe basic idea behind a Content Management System (CMS) is to separate the management of content from design. Cute Editor allows the site designer to easily \u003Cem\u003Ecreate\u003C\u002Fem\u003E and establish templates to give the site a uniform look. Templates may be modified when desired. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 通过限制html和文字的长度来保护你的数据库 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EIf you tried to insert a record whose text length is greater than allowed by your table, an error will be reported. To prevent this type of error from occurring, developers can use MaxHTMLLength or MaxTextLength in the Cute Editor to limit the length of the user抯 input. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E Apply security to control user access to resources \u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor allows developers to assign a pre-defined set of permissions by group or individual. This prevents a normal user to access the administration functionality. \u003Cbr\u002F\u003E\u003Cbr\u002F\u003EThe details of permissions are \u003Cem\u003Especified\u003C\u002Fem\u003E by an XML security policy file. Each level maps to a specific file. The default mappings: \u003Cbr\u002F\u003E\u003Cbr\u002F\u003Eadmin设置 admin.config \u003Cbr\u002F\u003Edefault设置 default.config \u003Cbr\u002F\u003Eguest设置 guest.config \u003Cbr\u002F\u003EYou can customize and extend each policy file by editing the XML security policy file. You can also \u003Cem\u003Ecreate\u003C\u002Fem\u003E your own policy files that define arbitrary permission sets.\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EComparison of the sample security policy file \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003EPermissions\u002FResource Setting Admin Default Guest \u003Cbr\u002F\u003EAllowUpload \u003Cbr\u002F\u003EAllowDelete \u003Cbr\u002F\u003EAllowCopy \u003Cbr\u002F\u003EAllowMove \u003Cbr\u002F\u003EAllow\u003Cem\u003ECreate\u003C\u002Fem\u003EFolder \u003Cbr\u002F\u003EAllowDeleteFolder \u003Cbr\u002F\u003ERestrictUploadedImageDimension \u003Cbr\u002F\u003EAutoResizeUploadedImages \u003Cbr\u002F\u003EMaxImageWidth 6400 640 640 \u003Cbr\u002F\u003EMaxImageHeight 4800 480 480 \u003Cbr\u002F\u003EMaxImageSize 10000 100 100 \u003Cbr\u002F\u003EMaxMediaSize 10000 100 100 \u003Cbr\u002F\u003EMaxFlashSize 10000 100 100 \u003Cbr\u002F\u003EMaxDocumentSize 10000 100 100 \u003Cbr\u002F\u003EImageGalleryPath ~\u002Fuploads ~\u002Fuploads\u002Fmember ~\u002Fuploads\u002Fguest \u003Cbr\u002F\u003EMediaGalleryPath ~\u002Fuploads ~\u002Fuploads\u002Fmember ~\u002Fuploads\u002Fguest \u003Cbr\u002F\u003EFlashGalleryPath ~\u002Fuploads ~\u002Fuploads\u002Fmember ~\u002Fuploads\u002Fguest \u003Cbr\u002F\u003EFilesGallaryPath ~\u002Fuploads ~\u002Fuploads\u002Fmember ~\u002Fuploads\u002Fguest \u003Cbr\u002F\u003EImageFilters .jpg \u003Cbr\u002F\u003E.jpeg \u003Cbr\u002F\u003E.gif \u003Cbr\u002F\u003E.png .jpg \u003Cbr\u002F\u003E.jpeg \u003Cbr\u002F\u003E.gif \u003Cbr\u002F\u003E .jpg \u003Cbr\u002F\u003E.jpeg \u003Cbr\u002F\u003E.gif \u003Cbr\u002F\u003E \u003Cbr\u002F\u003EMediaFilters .avi \u003Cbr\u002F\u003E.mpg \u003Cbr\u002F\u003E.mpeg \u003Cbr\u002F\u003E.mp3 .avi \u003Cbr\u002F\u003E.mpg \u003Cbr\u002F\u003E.mpeg \u003Cbr\u002F\u003E .avi \u003Cbr\u002F\u003E.mpg \u003Cbr\u002F\u003E.mpeg \u003Cbr\u002F\u003E \u003Cbr\u002F\u003EDocumentFilters .txt, .doc\u003Cbr\u002F\u003E.pdf, .zip\u003Cbr\u002F\u003E.rar, .avi\u003Cbr\u002F\u003E.mpg, .mpeg\u003Cbr\u002F\u003E.mp3, .jpg\u003Cbr\u002F\u003E.jpeg,.gif\u003Cbr\u002F\u003E.png .pdf, .doc\u003Cbr\u002F\u003E .txt, .doc\u003Cbr\u002F\u003E.pdf, .zip\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 在线图片编辑\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EPeople that input content on a website are generally not web designers, so most don't have that design & technical fibre in them. With online image editor, you can now edit image file with no image editing software to download or install! Easy drag and drop familiar interface. Resize, change dimensions, scale, crop, add text, optimize, rotate, flip, mirror and add watermark. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 控制上传文件夹大小\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EMax Upload Folder size(Including all subfolders and files. A must have feature for people who have limited hosting space.) Dynamic display of available free space in the Upload Folder.Limits the size of your upload folder. If the max is reached uploads will be disabled. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持图片热点\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EImage maps are pictures with clickable regions also known as \"hotspots.\" When users click on one of the hotspots, they're directed to the page you designate. CuteEditor 5.0 lets you easily \u003Cem\u003Ecreate\u003C\u002Fem\u003E image maps to add fun and excitement to a page\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E \u003Cdiv\u003E 的盒模式\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E\u003Cdiv\u003E boxes offer a much greater ability to control the layout of a page. With CuteEditor, you can put any content between \u003Cdiv\u003E tags and then use CSS to style all sorts of borders, backgrounds, etc. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 通用虚拟键盘\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EVirtual Keyboard does not require changes to \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E settings of your system and even speeds up the entire text input process for your customers. It lets your native speaking clients to access your web resources from any location in the world without changing national keyboard layouts and fonts on their machines. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 把图片存到数据库\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EWith CuteEditor you can easily use a Sql Server database or access database as the file storage. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E RTF和HTML之间互相转换\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EWith CuteEditor you can easily convert an HTML document into an RTF file and RTF file into HTML or XHTML document. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 生成PDF文件\u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECuteEditor also allows you dynamically \u003Cem\u003Ecreate\u003C\u002Fem\u003E Adobe PDF documents from ASP.NET.\u003Cbr\u002F\u003E cuteEditor6.0多语言版(集成lic文件) \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E目前功能强大,最好的Asp.net编辑器之一 \u003Cbr\u002F\u003E除了一般html编辑器具有的功能外,还有word过滤、图片在线处理、加水印等实用功能 \u003Cbr\u002F\u003E使用关键步骤: \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E1、引用bin下的cuteEditor文件 \u003Cbr\u002F\u003E2、在aspx页面顶部中添加引用 \u003Cbr\u002F\u003E3、在aspx页面中加入代码 \u003Cbr\u002F\u003E4、最后可以在.cs文件中通过来读取Editor1.Text的值来进行任意的扩展和控制了 \u003Cbr\u002F\u003E具体配置可参照default.aspx和default.aspx.cs \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E关于cuteEditor6.0的特征及体验请浏览cuteEditor.cn,系统集成了lic授权文件,仅供体验测试使用,请不要用于任何商业用途! \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E","createTime":"2007-06-19 11:25:19","dataReportQuery":"spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-4-196338-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-4-196338-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default","dataReportClick":"{\"mod\":\"popu_645\",\"index\":\"4\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Ffanshuzone\u002F196338\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-4-196338-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1752188793655_20269\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","dataReportView":"{\"mod\":\"popu_645\",\"index\":\"4\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Ffanshuzone\u002F196338\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-4-196338-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1752188793655_20269\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","type":"download"},{"url":"https:\u002F\u002Fblog.csdn.net\u002Fdragoo1\u002Farticle\u002Fdetails\u002F8533207","title":"A \u003Cem\u003Escript\u003C\u002Fem\u003E \u003Cem\u003Eengine\u003C\u002Fem\u003E for the \u003Cem\u003Especified\u003C\u002Fem\u003E \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E can not be \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed","desc":"http:\u002F\u002Fsupport.microsoft.com\u002Fkb\u002F859712\r\nvb\u003Cem\u003Escript\u003C\u002Fem\u003E.dll未注册","createTime":"2013-01-23 11:13:44","dataReportQuery":"spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-5-8533207-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-5-8533207-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default","dataReportClick":"{\"mod\":\"popu_645\",\"index\":\"5\",\"dest\":\"https:\u002F\u002Fblog.csdn.net\u002Fdragoo1\u002Farticle\u002Fdetails\u002F8533207\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-5-8533207-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1752188793655_20269\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","dataReportView":"{\"mod\":\"popu_645\",\"index\":\"5\",\"dest\":\"https:\u002F\u002Fblog.csdn.net\u002Fdragoo1\u002Farticle\u002Fdetails\u002F8533207\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-5-8533207-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1752188793655_20269\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","type":"blog"}],"staffDOList":[{"id":null,"communityId":302,"username":"community_187","userNickname":"基础类社区","roleCode":1,"status":1,"createUsername":"","updateUsername":"","avatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","createTime":"2021-05-12 18:08:42","updateTime":"2021-05-12 18:08:42","lastLoginTime":"2021-05-12 18:08:42"},{"id":null,"communityId":302,"username":"sinat_28984567","userNickname":"二月十六","roleCode":2,"status":1,"createUsername":"bbs_assistant","updateUsername":"","avatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fe4154da1658b49ca87b443a68b0fac47_sinat_28984567.jpg!1","createTime":"2021-11-30 14:13:42","updateTime":"2021-11-30 14:13:42","lastLoginTime":"2021-11-30 14:13:42"},{"id":null,"communityId":302,"username":"wmxcn2000","userNickname":"卖水果的net","roleCode":2,"status":1,"createUsername":"community_187","updateUsername":"","avatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002F5591b292aa3a4c7db7b6c521d7086c16_wmxcn2000.jpg!1","createTime":"2021-06-16 11:09:24","updateTime":"2021-06-16 11:09:24","lastLoginTime":"2021-06-16 11:09:24"},{"id":null,"communityId":302,"username":"yenange","userNickname":"吉普赛的歌","roleCode":2,"status":1,"createUsername":"community_187","updateUsername":"","avatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fde3b442a33594feb8507dbb9d745e40a_yenange.jpg!1","createTime":"2021-06-15 19:11:58","updateTime":"2021-06-15 19:11:58","lastLoginTime":"2021-06-15 19:11:58"}],"communityConfig":{"scoreType":0,"scoreItems":{"0":"给本帖投票","1":"锋芒小试,眼前一亮","2":"潜力巨大,未来可期","3":"持续贡献,值得关注","4":"成绩优异,大力学习","5":"贡献巨大,全力支持"}},"shouldApply":false,"subscribeAble":false,"operatorAble":false,"commentNeedJoinCommunity":false},"default2014LiveRoom":[{"itemType":"","description":"高峰论坛","title":"2022 技术英雄会","url":"https:\u002F\u002Flive.csdn.net\u002Froom\u002Fiframe\u002Fcsdnnews\u002FfsNR5NWp?chat=1&title=1&footer=1","images":["https:\u002F\u002Fimg-home.csdnimg.cn\u002Fimages\u002F20221016050009.png"],"ext":{"time":"9:00","liveRoomUrl":"https:\u002F\u002Flive.csdn.net\u002Froom\u002Fcsdnnews\u002FfsNR5NWp"}}]},"isGooglebot":false,"canonical":"https:\u002F\u002Fwww.csdn.net\u002Ftopics\u002F260035406","openUrl":"","isApp":false,"localUrl":"https:\u002F\u002Fbbs.csdn.net\u002Ftopics\u002F260035406","typeId":"index","hasIndex":false},"CFG":{"ALIPLAYER_VERSION":"v4","ALIPLAYER_H5_VERSION":"mobile_v1","ENV":"prod","ROOT_URL":"https:\u002F\u002Fcms-mall.csdn.net\u002F","VUE_APP_API_URL_SERVER":"http:\u002F\u002Fcms-community-api.internal.csdn.net\u002F","VUE_APP_API_URL":"https:\u002F\u002Fcms-api.csdn.net\u002F","LOGIN_URL":"https:\u002F\u002Fpassport.csdn.net\u002Faccount\u002Flogin","VUE_APP_DOMAIN_SKILL":"https:\u002F\u002Fedu.csdn.net\u002F","VUE_APP_DOMAIN_PATH":"https:\u002F\u002Fedu.csdn.net\u002F","VUE_APP_COMMUNITY_API_URL":"https:\u002F\u002Fcommunity-api.csdn.net\u002F","VUE_APP_CCLOUD_API_URL":"https:\u002F\u002Fbizapi.csdn.net\u002Fcommunity-cloud\u002Fv1\u002F","VUE_APP_SKILL_API_URL":"https:\u002F\u002Fbizapi.csdn.net\u002Fskilltree\u002Fapi\u002F","VUE_APP_SEARCH_PLUGIN_API_URL":"https:\u002F\u002Fbizapi.csdn.net\u002Fsearchplugin\u002F","VUE_APP_COMMUNITY_ASK_API_URL":"https:\u002F\u002Fmp-ask.csdn.net\u002F","VUE_APP_ME_URL":"https:\u002F\u002Fme.csdn.net\u002F","VUE_APP_CCLOUD_RESUME":"https:\u002F\u002Fbizapi.csdn.net\u002Fjob-api\u002F","VUE_APP_CCLOUD_MAIN":"https:\u002F\u002Fwww.csdn.net\u002F","VUE_APP_CCLOUD_UC":"https:\u002F\u002Fwww.csdn.net\u002F","VUE_APP_CCLOUD_BZP_API_URL":"https:\u002F\u002Fbizapi.csdn.net\u002F","VUE_APP_CCLOUD_START_API_URL":"https:\u002F\u002Fmp-action.csdn.net\u002F","VUE_APP_PRACTIVE":"https:\u002F\u002Fbizapi.csdn.net\u002Fdaily-practice\u002F","VUE_APP_CCLOUD_HOSTPATH":"https:\u002F\u002Fbbs.csdn.net\u002F"},"queries":{"pageId":[],"domain":["ccloud.csdn.net\u002Fccloud\u002Fdetail1"],"id":["260035406"],"deviceType":"pc","isSpider":"","hostname":["bbs.csdn.net"]},"basePath":"bbs.csdn.net\u002Fccloud\u002Ftopics\u002F260035406","hrefUrl":"https:\u002F\u002Fbbs.csdn.net\u002Ftopics\u002F260035406","active":0,"navBarFixed":false,"title":"A script engine for the specified language can be not created","isLive":false,"contentType":{"text":"text","picture":"picture","link":"link","video":"video","vote":"vote","live":"live","blog":"blog","long_text":"long_text","task_text":"task_text"},"liveUrl":"https:\u002F\u002Flive.csdn.net\u002Froom\u002Fiframe\u002F","spmExtra":{"id":302,"topicId":260035406},"keywords":"","description":"以下内容是CSDN社区关于A script engine for the specified language can be not created相关内容,如果想了解更多关于MS-SQL Server社区其他内容,请访问CSDN社区。","mounted":false,"infoNoticeData":{"src":"","href":"","spm":"","delay":5},"showDialogInfoNotice":false};</script><script type="text/javascript" src="https://csdnimg.cn/release/cmsfe/public/js/runtime.2c8d4172.js"></script><script type="text/javascript" src="https://csdnimg.cn/release/cmsfe/public/js/chunk/common.9ac324e8.js"></script><script type="text/javascript" src="https://csdnimg.cn/release/cmsfe/public/js/chunk/tpl/ccloud-detail/index.93a5f007.js"></script></body> <!----> <script> window.csdn.sideToolbar = { options: { qr: { isShow: true, data: [ { imgSrc: 'https://csdnimg.cn/release/cmsfe/public/img/ewm.9010d6e5.png', desc: "关注公众号" }, ] }, help: { isShow: false, }, contentEl: document.getElementsByClassName("cloud-maintainer")[0] }, }; </script> <script src="https://g.csdnimg.cn/side-toolbar/2.9/side-toolbar.js" ></script> <!----> <!----> <!----> <script src="https://csdnimg.cn/release/blog_editor_html/release1.7.5/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js"></script> <script src="https://g.csdnimg.cn/lib/editor-page-detail/v2.2.0/js/runDetail.min.js"></script> <!----> <!----> <!----> <!----> <!----> <!----> <script src="https://g.csdnimg.cn/collection-box/2.1.0/collection-box.js"></script> <!----> <!----> <!----> <!----> <script src="https://g.csdnimg.cn/common/csdn-cert/csdn-cert.js"></script> <!----></html>