logo
small logo
  • Produits
  • Acheter
  • Assistance
  • About
  • Panneau du client Assistance
    • en
    • de
    • JP
    • ZH
  • Page d'accueil
  • /
  • Articles
  • /
  • How to create business cards from ASP .Net Core application
  • How to use Online Designer in ASP .NET Core

    17 janvier 2018

    One of the novelties by FastReport .NET 2018 was the adaptation of OnlineDesigner to the

    read more
  • FastReport .NET packages and .NET 5.0

    17 décembre 2020

    UPD: Applies to the versions of FastReport .NET before 2022.2. License packages are now available

    read more
  • How to upload a report to OnlineDesigner and download it after editing in an ASP .NET Core application

    30 juin 2019

    While working with Fast Reports online report designer, we usually have to upload our report

    read more
  • How to use FastCube .NET in React application

    1 octobre 2021

    UPD: Applies to the versions of FastCube .NET before 2022.1. License packages are now available

    read more
  • How to create the invoice from ASP.Net Core application

    31 août 2020

    Few believed in the success of the new open-source ASP.Net Core framework from Microsoft. It’s

    read more

How to create business cards from ASP .Net Core application

31 mai 2020

ASP.Net Core Framework is a cross-platform solution for creating web applications. This means that you can develop in various operating systems and applications created will also work in them. These and other benefits have made ASP.Net Core very popular. Many desktop developers who wrote in C# language took up web programming thanks to the new Framework. Yes, Microsoft has previously promoted the ASP.Net Web Framework based on the .Net Framework but that was a commercial software with closed source codes, designed exclusively for Windows and, unlike .Net Core, it was not available to everyone. 

Due to the popularity of ASP.Net Core, many people create absolutely non-trivial web applications. For example, you may need to print business cards – yes, those cards that business people use to exchange contact information.

We should not underestimate the role of business cards in modern life. Even global digitalization couldn’t displace small cardboard cards; now they are more and more like advertising. Expensive design and beautiful textured paper are aimed to impress a person – which is a key to success in business.

Different countries have their own business cards sizes, for example:

  • Australia – 90×55 mm
  • Russia - 90×50 mm
  • USA – 88,9×50,8 mm (3,2”×2”)
  • China - 90×54 mm
  • France - 85×55 mm
  • Germany - 85×55 mm
  • Japan - 91×55 mm

Let’s use FastReport.Net report generator to create business cards from a custom ASP.NET Core application. It is easier to create business card templates from the report designer than in a graphical editor.

The Welcome window of the designer lets us create reports using two Wizards - the Standard Report Wizard and the Label Wizard.

FastReport .Net Designer Welcome Form

Choose the Label Wizard:

 Label wizard. Business card template seleced.

In the Label Wizard we can choose a manufacturer, for each of them there is a set of document templates of certain sizes, such as: letter, label, price tag, badge, business card, etc.

We need the business card template. Different manufacturers use different business card sizes, choose the one you need. Then you just have to add some text fields with the desired text and design parameters to the report page:

Business card report template is ready

Use a text object to create a frame and set dashed borders. Now we have only one business card on an A4 page. Configure the RowCount property of the DataBand:

DataBand properties

This completes the creation of the report template, save it. For example, create the App_Data folder in the wwwroot directory and save your report there.

Add FastReport.Net library to the project using NuGet:

FastReport .Net packages you needed

In Startup.cs we will connect the FastReport libraries:

1
2
3
4
5
6
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
 {
…
app.UseFastReport();
…
}

 Now you can add report generation to the controller:

1
2
3
4
5
6
private IHostingEnvironment _env;
 
 public HomeController(IHostingEnvironment env)
 {
 _env = env;
 }

 Inject IHostingEnvironment interface into the class to get path to wwwroot directory where we saved the report. Create the report object in the method you need, load data and a report template into it:

1
2
3
4
5
6
7
8
9
 public IActionResult Index()
 {
 var rootpath = _env.WebRootPath;
 var report = new WebReport();
 report.Report.Load(rootpath + "/App_Data/Business Card.frx");
 report.Report.RegisterData(data); 
 ViewBag.WebReport = report;
 return View();
 }

 Add the report render in the Index view:

1
@await ViewBag.WebReport.Render()

 Now, run the application:

Business card report showed

From the top menu you can print the report or export it to one of the formats:

 Report export options

Now you can preview your business cards, print or export them to one of the popular electronic document formats! And notice how little time it took to implement this functionality!

A propos de notre produit Acheter
avatar
Dmitriy Fedyashov
Technical Writer
Fast Reports Team: Dmitriy Fedyashov - Technical Writer at Fast Reports
.NET FastReport ASP.NET Core Business card

Ajouter un commentaire
logo
  • 800-985-8986 (English, US)
  • +4930568373928 (German)
  • +55 19 98147-8148 (Portuguese)
  • info@fast-report.com
  • 901 N Pitt Str #325 Alexandria VA 22314
  • Acheter
  • Télécharger
  • Documentation
  • Avis
  • Comment désinstaller nos produits
  • FAQ
  • Tutoriel vidéo
  • Forum
  • Articles
  • Nos actualités
  • Dossier Presse
  • Partenaires
  • Extended licensing
  • Nous contacter

© 1998-2023 by Fast Reports Inc.

  • Politique de confidentialité
  • Pas une offre publique