-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDisattivaNL.aspx.cs
57 lines (55 loc) · 1.94 KB
/
DisattivaNL.aspx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace pa_taverne
{
public partial class DisattivaNL : Pagebasic
{
protected void Page_Load(object sender, EventArgs e)
{
string id_iscritto = string.Empty;
string nr_disattivazione = string.Empty;
bool Err = false;
int ctrl = 0;
try
{
id_iscritto = Request.QueryString["id"].ToString().Trim();
nr_disattivazione = Request.QueryString["nr"].ToString().Trim();
}
catch
{
Err = true;
lblErr.Text = "ERRORE!!! <br /><br /> I link di attivazione al servizio non è corretto";
}
if (!Err)
{
try
{
if (id_iscritto != string.Empty && nr_disattivazione != string.Empty)
{
ctrl = objQry.EliminaIscritto(id_iscritto, nr_disattivazione);
if (ctrl > 0)
{
lblErr.Text = "DISATTIVAZIONE AVVENUTA CON SUCCESSO <br /><br />Da oggi non riceverai più e-mail dal nostro servizio.<br /> Potrai comunque riattivare il servizio quando vorrai.";
}
else
{
lblErr.Text = "ERRORE!!! <br /><br /> I link di attivazione al servizio non è corretto";
}
}
else
{
lblErr.Text = "ERRORE!!! <br /><br /> I link di attivazione al servizio non è corretto";
}
}
catch (Exception Ex)
{
lblErr.Text = "ERRORE!!! " + Ex.Message;
}
}
}
}
}