You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
760 B
29 lines
760 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace QW2021C.Administration
|
|
{
|
|
public partial class AdminAnmeldungen : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
protected void btnaktualiseren_Click(object Sender, Syncfusion.JavaScript.Web.ButtonEventArgs e)
|
|
{
|
|
clsDB db = new clsDB();
|
|
db.Get_Tabledata("Select sqlscript from sqlqueries where sqlscriptnumber=4", false, true);
|
|
string sql = db.dsdaten.Tables[0].Rows[0][0].ToString();
|
|
db.dsdaten.Tables.Clear();
|
|
db.Get_Tabledata(sql, false, true);
|
|
|
|
|
|
|
|
}
|
|
}
|
|
} |