ba8eef2aeb
-- fix grafici - ingrandimento generale - fix pagina che debordava - paginazione lista sheets
38 lines
658 B
C#
38 lines
658 B
C#
using System;
|
|
|
|
namespace NKC_WF.WebUserControls
|
|
{
|
|
public partial class cmp_errDescr : BaseUserControl
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
public string ErrType
|
|
{
|
|
get
|
|
{
|
|
return hfErrType.Value;
|
|
}
|
|
set
|
|
{
|
|
hfErrType.Value = value;
|
|
}
|
|
}
|
|
|
|
public string Description
|
|
{
|
|
get
|
|
{
|
|
return hfDescription.Value;
|
|
}
|
|
set
|
|
{
|
|
hfDescription.Value = value;
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
} |