2025-04-15 12:10:19 +02:00

44 lines
1.0 KiB
C#

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Text;
using System.Collections.Generic;
public partial class showLogs : System.Web.UI.Page
{
public int _noteId;
private int _pdfC6;
public string pathNav;
//==================================================
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
_noteId = Convert.ToInt32(Request.QueryString.Get("noteId"));
_pdfC6 = Convert.ToInt32(Request.QueryString.Get("pdfC6"));
pathNav = Request.QueryString.Get("pathNav");
//this.notePanel.InnerText = textNote;
}
}
protected void ButtonIndietro(object sender, EventArgs e)
{
Server.Transfer("archiviodocumenti.aspx", true);
}
}