combit Software: Report Generator, Reporting Tools, Developer Components, CRM, Customer Relationship Management
Erleben Sie preisgekrönte Software für CRM, Kontaktmanagement und Reporting für Entwickler.
My Account: Login

News

Reporting Functions for your Server or Web Server Application

 

Make Users Happy with Your Web Application...


With more and more people using smartphones and netbooks web applications and server applications are increasingly popular. Their platform independence brings a decisive advantage for the developer: You administrate your application directly on the server, which keeps maintenance cost low. With List & Label you can equip your application quickly and easily with powerful reporting functions to make user wishes come true.


Web reporting with List & Label

With the List & Label .NET component users of your server or web server application can, in connection with ASP.NET, create all types of reports. In web applications the "load" of the print job is conveniently distributed even when using weaker clients.

How do I get a server/web server license?
As usual customers with a List & Label Enterprise Edition are better off, because their edition already includes an unlimited number of server/web server licenses. Customers with a Professional or Standard Edition can purchase server/web server licenses from 99 € (net).
Go to the combit online shop

Programing example in C#: Web reporting



// Set path for project file and result

string ProjectFile = Server.MapPath( string .Empty) + @"\reports\" + reportName;

Filename = Path .ChangeExtension(ProjectFile, "PDF" );

TempDir = Path .GetDirectoryName(Request.PhysicalPath) + @"\temp\" + Session.SessionID;

if (! Directory .Exists(TempDir)) Directory .CreateDirectory(TempDir);

 

 

// Set print options for quiet export

LL.AutoShowSelectFile = false ;

LL.AutoShowPrintOptions = false ;

LL.AutoDesignerFile = ProjectFile;

LL.AutoDestination = LlPrintMode .Export;

 

// Set export options for quiet export

LL.ExportOptions.Add( "Export.Target" , Format);

LL.ExportOptions.Add( "Export.File" , Filename);

LL.ExportOptions.Add( "Export.Path" , TempDir);

LL.ExportOptions.Add( "Export.Quiet" , "1" );

 

// Assign data source

LL.DataSource = dataSource;

 

// Print

LL.Print();

 

// Show result (e.g. in an iframe)

siteName = "displayPDFfile.aspx?file=" + Session.SessionID + "/" + Filename;

myiframe.Attributes[ "src" ] = siteName;

 

 

Find more information about preparations for (web)server-side reporting, printer driver and web servers and debugging in the List & Label manual


You don't know the current version of List & Label yet?




Print page
© 1989-2013 combit GmbH. All rights reserved. Please read our Notes on Data Protection. Changes and errors may occur.