21 lines
495 B
C#
21 lines
495 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;
|
|
|
|
namespace CMS_SC
|
|
{
|
|
public partial class UpdateVoc : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
// aggiorno vocabolario
|
|
DataWrap.DW.resetVocabolario();
|
|
// torno a menu...
|
|
Response.Redirect(user_std.pagPrecedente);
|
|
}
|
|
}
|
|
} |