20 lines
488 B
C#
20 lines
488 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using XPS_data;
|
|
|
|
public partial class test : Flesk.Accelerator.Page //System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
protected void btnPrint_Click(object sender, EventArgs e)
|
|
{
|
|
// istanzio obj stampa...
|
|
reportPrinter.obj.printReport(reportRichiesto.Barcode, txtPrinter.Text, txtULP.Text);
|
|
}
|
|
}
|