38 lines
1023 B
C#
38 lines
1023 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using SteamWare;
|
|
using MedPred_Data;
|
|
using System.Data;
|
|
|
|
namespace MedPred
|
|
{
|
|
public partial class VLab : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
protected void grView_RowDataBound(object sender, GridViewRowEventArgs e)
|
|
{
|
|
string cmd = Request.QueryString["cmd"];
|
|
if (cmd == "sel")
|
|
{
|
|
try
|
|
{
|
|
|
|
if (((DS_Applicazione.VisGenRow)((DataRowView)e.Row.DataItem).Row).DataVisita == Convert.ToDateTime(memLayer.ML.StringSessionObj("DataVisita")))
|
|
{
|
|
memLayer.ML.setSessionVal("IdxRowVGen", e.Row.DataItemIndex);
|
|
Response.Redirect("VLab");
|
|
}
|
|
}
|
|
catch
|
|
{ }
|
|
}
|
|
}
|
|
}
|
|
} |