continuato x collaudi, ANCORA NON OK...

This commit is contained in:
Samuele E. Locatelli
2015-06-17 16:27:51 +02:00
parent 1445745b79
commit cdc295fdce
19 changed files with 772 additions and 557 deletions
@@ -0,0 +1,89 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace CMS_SC.WebUserControls
{
public partial class mod_collaudi : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// dimensione pagina grid view
/// </summary>
public int pageSize
{
get
{
return grView.PageSize;
}
set
{
grView.PageSize = value;
}
}
public int IdxDossier
{
get
{
int answ = 0;
try
{
answ = Convert.ToInt32(hfIdxDossier.Value);
}
catch
{ }
return answ;
}
set
{
hfIdxDossier.Value = value.ToString();
}
}
public string CodSchedaVers
{
get
{
string answ = "";
try
{
answ = hfCodSchedaVers.Value;
}
catch
{ }
return answ;
}
set
{
hfCodSchedaVers.Value = value;
}
}
public string Fase
{
get
{
string answ = "";
try
{
answ = hfFase.Value;
}
catch
{ }
return answ;
}
set
{
hfFase.Value = value;
}
}
public void doUpdate()
{
grView.DataBind();
}
}
}