13 lines
306 B
C#
13 lines
306 B
C#
using System;
|
|
|
|
namespace MP_ADM.WebUserControls
|
|
{
|
|
public partial class mod_unauthorized : BaseUserControl
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
lblTitle.Text = traduci("NonDisponibile");
|
|
lblMess.Text = traduci("NonAuth");
|
|
}
|
|
}
|
|
} |