24 lines
639 B
C#
24 lines
639 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace SuperMap.RealEstate.SendRec.Modules
|
|
{
|
|
public partial class WebForm1 : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
protected void Button1_Click(object sender, EventArgs e)
|
|
{
|
|
SuperMap.RealEstate.SendRec.Storage.Business.APPLYPROINST _APPLYPROINST = new Storage.Business.APPLYPROINST();
|
|
_APPLYPROINST.APPLYPROINST_NAME = "123";
|
|
_APPLYPROINST.Insert();
|
|
}
|
|
}
|
|
} |