18 lines
386 B
C#
18 lines
386 B
C#
using System;
|
|
using DeiNiu.wms.Data.Model;
|
|
|
|
public partial class root_sqltool : PageBase
|
|
{
|
|
private Setup _obj;
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
_obj = new Setup();
|
|
}
|
|
|
|
protected void btnExe_Click(object sender, EventArgs e)
|
|
{
|
|
GridView1.DataSource = _obj.exeSql(txtsql.Text.Trim());
|
|
GridView1.DataBind();
|
|
}
|
|
}
|