logo
small logo
  • Products
  • Comprar
  • Suporte
  • Articles
  • Customer panel Suporte
    • en
    • ru
    • pt
    • es
    • de
    • pl
    • JP
    • ZH
  • Home
  • /
  • Articles
  • /
  • How to create business cards from ASP .Net Core application
  • How to create the invoice from ASP.Net Core application

    31 de agosto de 2020

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

    read more
  • How to use FastReport reports in a PHP application. Part 2.

    13 de outubro de 2019

    In the first part of the article, we created an ASP.Net Core application in which

    read more
  • How to create a custom toolbar for web FastReport.NET report

    31 de maio de 2020

    Many users of report generators are interested in setting up the toolbar when reviewing the

    read more
  • How to use FastRerport.Core in Vue.js application

    30 de junho de 2019

    The framework Vue.js is now very popular and is on a par with Angular. We

    read more
  • How to create business cards from a WinForms application

    28 de maio de 2020

    As you can see from the name, Windows Forms type of applications is designed to

    read more

How to create business cards from ASP .Net Core application

31 de maio de 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!

about product download comprar
avatar
Dmitriy Fedyashov
.NET FastReport ASP.NET Core Business card

Add comment
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
  • Comprar
  • Download
  • Documentação
  • Depoimentos
  • Como desinstalar nossos produtos
  • Ticket system
  • FAQ
  • Tutorial Video
  • Forum
  • Articles
  • Our News
  • Informação sobre nós
  • Parceiros
  • Nossa equipe
  • Contatos

© 1998-2021 by Fast Reports Inc.

  • Privacidade