本文整理汇总了C#中LANDCOMP.ExecuteSTP类的典型用法代码示例。如果您正苦于以下问题:C# ExecuteSTP类的具体用法?C# ExecuteSTP怎么用?C# ExecuteSTP使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ExecuteSTP类属于LANDCOMP命名空间,在下文中一共展示了ExecuteSTP类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: graphic
public string graphic()
{
String output = "";
var param1 = Request.Params["param1"].ToString();
//var param2 = Request.Params["param2"].ToString();
//var param3 = Request.Params["param3"].ToString();
//var param4 = Request.Params["param4"].ToString();
//var param5 = Request.Params["param5"].ToString();
//var param6 = Request.Params["param6"].ToString();
try
{
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
ds = eSTP.List2("LANDCOMP.D_REPORT", param1, "");
DataTable dt = new DataTable();
dt = ds.Tables[0];
for (int i = 0; i < dt.Rows.Count; i++)
{
output += (dt.Rows[i]["t_xmlxx"].ToString());
}
}
catch (Exception e)
{
output = e.Message;
}
return output;
}
示例2: ServiceSelect
private bool ServiceSelect(string sm)
{
switch (sm)
{
case "L":
var param1L = Request.Params["param1"].ToString();
LANDCOMP.ExecuteSTP eSTP_L = new LANDCOMP.ExecuteSTP();
eSTP_L.Datas();
DataSet ds_L = new DataSet();
ds_L = eSTP_L.List7("P_GROUPS", param1L, "", "", "", "", "", "");
dt = ds_L.Tables[0];
Response.ContentType = "application/xhtml+xml";
Response.Write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
Response.Write("<rows>");
groupsid = Session["groups"].ToString();
for (int i = 0; i < dt.Rows.Count; i++)
{
Random r = new Random();
Response.Write("<row id=\"" + (i + 1).ToString() + "\">");
//Response.Write("<cell>" + (i + 1).ToString() + "</cell>"); // Untuk Membuat Angka
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["GroupIDents"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["GroupsNamess"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["GroupsLanjut"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["GroupsExcept"].ToString()) + "</cell>");
if (groupsid == "Operator")
{
Response.Write("<cell>" + RemoveWhiteSpace("View^PengecekanLapanganForm.aspx?rand=" + r.Next() + "¶m1=V" + "¶m2=" + dt.Rows[i]["GroupIDents"].ToString() + "") + "</cell>");
}
else
{
Response.Write("<cell>" + RemoveWhiteSpace("View^GroupManagementForm.aspx?rand=" + r.Next() + "¶m1=V" + "¶m2=" + dt.Rows[i]["GroupIDents"].ToString() + "") + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace("Edit^GroupManagementForm.aspx?rand=" + r.Next() + "¶m1=E" + "¶m2=" + dt.Rows[i]["GroupIDents"].ToString() + "") + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace("Delete^GroupManagementForm.aspx?rand=" + r.Next() + "¶m1=D" + "¶m2=" + dt.Rows[i]["GroupIDents"].ToString() + "") + "</cell>");
}
Response.Write("</row>");
}
Response.Write("</rows>");
dt.Dispose();
Response.End();
Response.End();
return false;
default:
Response.ContentType = "text/plain";
Response.End();
return true;
}
}
示例3: ServiceSelect
private bool ServiceSelect(string sm)
{
switch (sm)
{
case "L":
var param1L = Request.Params["param1"].ToString();
var param2L = Request.Params["param2"].ToString();
var param4L = Request.Params["param4"].ToString();
var param5L = Request.Params["param5"].ToString();
LANDCOMP.ExecuteSTP eSTP_L = new LANDCOMP.ExecuteSTP();
eSTP_L.Datas();
DataSet ds_L = new DataSet();
ds_L = eSTP_L.List34("P_REGIST", param1L, param2L, "", param4L, param5L, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "");
dt = ds_L.Tables[0];
Response.ContentType = "application/xhtml+xml";
Response.Write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
Response.Write("<rows>");
groupsid = Session["groups"].ToString();
for (int i = 0; i < dt.Rows.Count; i++)
{
Random r = new Random();
Response.Write("<row id=\"" + (i + 1).ToString() + "\">");
Response.Write("<cell>" + (i + 1).ToString() + "</cell>"); // Untuk Membuat Angka
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["praregNmrPra"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["registNmrReg"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["penlapNmrPen"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["registAssign"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["registLanjut"].ToString()) + "</cell>");
if (dt.Rows[i]["registNmrReg"].ToString() != "")
{
Response.Write("<cell>" + RemoveWhiteSpace("View^RegistrasiForm.aspx?rand=" + r.Next() + "¶m1=V" + "¶m2=" + dt.Rows[i]["registNmrReg"].ToString() + "") + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace("Edit^RegistrasiForm.aspx?rand=" + r.Next() + "¶m1=E" + "¶m2=" + dt.Rows[i]["registNmrReg"].ToString() + "") + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace("Delete^RegistrasiForm.aspx?rand=" + r.Next() + "¶m1=D" + "¶m2=" + dt.Rows[i]["registNmrReg"].ToString() + "") + "</cell>");
}
Response.Write("</row>");
}
Response.Write("</rows>");
dt.Dispose();
Response.End();
Response.End();
return false;
default:
Response.ContentType = "text/plain";
Response.End();
return true;
}
}
示例4: ServiceSelect
private bool ServiceSelect(string sm)
{
switch (sm)
{
case "L":
var param1L = Request.Params["param1"].ToString();
var param2L = Request.Params["param2"].ToString();
LANDCOMP.ExecuteSTP eSTP_L = new LANDCOMP.ExecuteSTP();
eSTP_L.Datas();
DataSet ds_L = new DataSet();
ds_L = eSTP_L.List2("P_HOME", param1L, param2L);
dt = ds_L.Tables[0];
Response.ContentType = "application/xhtml+xml";
Response.Write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
Response.Write("<rows>");
for (int i = 0; i < dt.Rows.Count; i++)
{
Random r = new Random();
Response.Write("<row id=\"" + (i + 1).ToString() + "\">");
Response.Write("<cell>" + (i + 1).ToString() + "</cell>"); // Untuk Membuat Angka
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["MidentNamass"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["registNmrReg"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["pengtoNmrPid"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["negosiNmrNeg"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["visumsNovism"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["berks1NmrBr1"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["pmbyrnNmrByr"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["berks2NmrBr2"].ToString()) + "</cell>");
Response.Write("</row>");
}
Response.Write("</rows>");
dt.Dispose();
Response.End();
Response.End();
return false;
case "graph":
Response.ContentType = "application/xhtml+xml";
Response.Write(graphic());
Response.End();
return false;
break;
default:
Response.ContentType = "text/plain";
Response.End();
return true;
}
}
示例5: HakAkses
public void HakAkses()
{
if (Session["userid"] is object)
{
userid = Session["userid"].ToString();
if (Session["groups"] is object)
{
groups = Session["groups"].ToString();
}
}
if (!(Session["userid"] is object))
{
Response.Write("<script language=\"javascript\" type=\"text/javascript\">");
Response.Write("alert('Session sudah habis. Silakan login kembali.');");
Response.Write("location.href = '../login.aspx';");
Response.Write("</script>");
}
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
ds = eSTP.List8("P_MENU", "CHA", "", groups, "", "", "", "", "");
dt = ds.Tables[0];
PraRegistrasiView = dt.Rows[0]["PraRegistrasi"].ToString(); //0
PraRegistrasiEdit = dt.Rows[0]["PraRegistrasiEdit"].ToString(); //1
PraRegistrasiDelete = dt.Rows[0]["PraRegistrasiDelete"].ToString(); //2
PraRegistrasiAssign = dt.Rows[0]["PraRegistrasiAssign"].ToString(); //3
dt.Dispose();
if (PraRegistrasiView.ToString() != "1" )
{
if (groups.ToString() != "1")
{
Response.Write("<script language=\"javascript\" type=\"text/javascript\">");
//Response.Write("window.location.reload()");
Response.Write("alert('Anda Tidak Memiliki Akses Untuk Melihat Modul Ini');");
Response.Write("location.href = 'home.aspx';");
Response.Write("</script>");
}
}
}
示例6: HakAkses
private void HakAkses()
{
if (Session["userid"] is object)
{
userid = Session["userid"].ToString();
if (Session["groups"] is object)
{
groups = Session["groups"].ToString();
}
}
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
ds = eSTP.List8("P_MENU", "CHA", "", groups, "", "", "", "", "");
dt = ds.Tables[0];
GroupManagementEdit = dt.Rows[9]["GroupManagementEdit"].ToString(); //0
GroupManagementDelete = dt.Rows[9]["GroupManagementDelete"].ToString(); //1
GroupManagementView = dt.Rows[9]["GroupManagement"].ToString(); //2
GroupManagementAssign = dt.Rows[9]["GroupManagementAssign"].ToString(); //3
dt.Dispose();
if (GroupManagementView.ToString() != "1")
{
if (groups.ToString() != "1")
{
Response.Write("<script language=\"javascript\" type=\"text/javascript\">");
Response.Write("alert('Anda Tidak Memiliki Akses Untuk Melihat Modul Ini');");
Response.Write("location.href = 'home.aspx';");
Response.Write("</script>");
}
}
}
示例7: SaveDetail
private String SaveDetail()
{
String param1 = ""; if (Request.Params["param1"] is object) param1 = Request.Params["param1"].ToString();
String param2 = ""; if (Request.Params["param2"] is object) param2 = Request.Params["param2"].ToString();
String param3 = ""; if (Request.Params["param3"] is object) param3 = Request.Params["param3"].ToString();
String param4 = ""; if (Request.Params["param4"] is object) param4 = Request.Params["param4"].ToString();
String param5 = ""; if (Request.Params["param5"] is object) param5 = Request.Params["param5"].ToString();
String param6 = ""; if (Request.Params["param6"] is object) param6 = Request.Params["param6"].ToString();
String param7 = ""; if (Request.Params["param7"] is object) param7 = Request.Params["param7"].ToString();
try
{
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
eSTP.save7("P_PENGTO_D", param1, param2, param3, param4, param5, param6, param7);
}
catch (Exception ex)
{
Response.Write(ex.Message);
Response.End();
return ex.Message;
}
return param1;
}
示例8: ServiceSelect
private bool ServiceSelect(string sm)
{
switch (sm)
{
case "L":
var param1L = Request.Params["param1"].ToString();
var param2L = Request.Params["param2"].ToString();
var param4L = Request.Params["param4"].ToString();
LANDCOMP.ExecuteSTP eSTP_L = new LANDCOMP.ExecuteSTP();
eSTP_L.Datas();
DataSet ds_L = new DataSet();
ds_L = eSTP_L.List8("P_VISUMS_D", param1L, param2L, "", param4L, "", "", "", "");
dt = ds_L.Tables[0];
Response.ContentType = "application/xhtml+xml";
Response.Write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
Response.Write("<rows>");
if (param1L == "LRK")
{
for (int i = 0; i < dt.Rows.Count; i++)
{
Random r = new Random();
Response.Write("<row id=\"" + (i + 1).ToString() + "\">");
Response.Write("<cell>" + (i + 1).ToString() + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["visumsCodess"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["visumsKtrgn"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["visumsRekom"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["visumsAksi"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["visumsSequen"].ToString()) + "</cell>");
Response.Write("</row>");
}
}
else
{
for (int i = 0; i < dt.Rows.Count; i++)
{
Random r = new Random();
Response.Write("<row id=\"" + (i + 1).ToString() + "\">");
Response.Write("<cell>" + (i + 1).ToString() + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["visumsCodess"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["visumsKtrgn"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace("Hapus^javascript:Hapus(\"" + "DO" + "\",\"" + "DO" + "\",\"" + dt.Rows[i]["visumsNovism"].ToString() + "\",\"" + dt.Rows[i]["visumsSequen"].ToString() + "\",\"" + "\");^_self") + "</cell>");
Response.Write("</row>");
}
}
Response.Write("</rows>");
dt.Dispose();
Response.End();
Response.End();
return false;
case "V":
var Param1 = Request.Params["param1"].ToString();
var Param2 = Request.Params["param2"].ToString();
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
ds = eSTP.List11("P_VISUMS", Param1, Param2, "", "", "", "", "", "", "", "", "");
dt = ds.Tables[0];
Response.ContentType = "text/plain";
Response.Write(dt.Rows[0]["visumsNovism"].ToString() + "|"); //0
Response.Write(dt.Rows[0]["registNmrReg"].ToString() + "|"); //1
Response.Write(dt.Rows[0]["pengtoNmrPid"].ToString() + "|"); //2
Response.Write(dt.Rows[0]["visumsVerLnj"].ToString() + "|"); //3
Response.Write(dt.Rows[0]["visumsEkseps"].ToString() + "|"); //4
Response.Write(dt.Rows[0]["VisumsKetEks"].ToString() + "|"); //5
dt.Dispose();
Response.End();
Response.End();
return false;
case "CRUD":
Response.ContentType = "text/plain";
Response.Write(Save());
Response.End();
return false;
case "CRUDOS":
Response.ContentType = "text/plain";
Response.Write(SaveOS());
Response.End();
return false;
default:
Response.ContentType = "text/plain";
Response.End();
return true;
}
}
示例9: Save
private String Save()
{
if (Session["userid"] is object)
{
userid = Session["userid"].ToString();
}
String param1 = ""; if (Request.Params["param1"] is object) param1 = Request.Params["param1"].ToString();
String param2 = ""; if (Request.Params["param2"] is object) param2 = Request.Params["param2"].ToString();
String param3 = ""; if (Request.Params["param3"] is object) param3 = Request.Params["param3"].ToString();
String param4 = ""; if (Request.Params["param4"] is object) param4 = Request.Params["param4"].ToString();
String param5 = ""; if (Request.Params["param5"] is object) param5 = Request.Params["param5"].ToString();
String param6 = ""; if (Request.Params["param6"] is object) param6 = Request.Params["param6"].ToString();
String param7 = ""; if (Request.Params["param7"] is object) param7 = Request.Params["param7"].ToString();
String param8 = ""; if (Request.Params["param8"] is object) param8 = Request.Params["param8"].ToString();
String param9 = ""; if (Request.Params["param9"] is object) param9 = Request.Params["param9"].ToString();
String param10 = ""; if (Request.Params["param10"] is object) param10 = Request.Params["param10"].ToString();
String param11 = ""; if (Request.Params["param11"] is object) param11 = Request.Params["param11"].ToString();
String param12 = ""; if (Request.Params["param12"] is object) param12 = Request.Params["param12"].ToString();
String param13 = ""; if (Request.Params["param13"] is object) param13 = Request.Params["param13"].ToString();
String param14 = ""; if (Request.Params["param14"] is object) param14 = Request.Params["param14"].ToString();
String param15 = ""; if (Request.Params["param15"] is object) param15 = Request.Params["param15"].ToString();
String param16 = ""; if (Request.Params["param16"] is object) param16 = Request.Params["param16"].ToString();
String param17 = ""; if (Request.Params["param17"] is object) param17 = Request.Params["param17"].ToString();
String param18 = ""; if (Request.Params["param18"] is object) param18 = Request.Params["param18"].ToString();
String param19 = ""; if (Request.Params["param19"] is object) param19 = Request.Params["param19"].ToString();
String param20 = ""; if (Request.Params["param20"] is object) param20 = Request.Params["param20"].ToString();
String param21 = ""; if (Request.Params["param21"] is object) param21 = Request.Params["param21"].ToString();
String param22 = ""; if (Request.Params["param22"] is object) param22 = Request.Params["param22"].ToString();
String sql = "";
String output = "";
try
{
output = param1;
if (output == "E" || output == "D" || output == "A")
{
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
ds = eSTP.List22("P_PENGTO", "X", param2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "");
dt = ds.Tables[0];
if (dt.Rows.Count > 0)
{
if (output == "E")
output = "noedit";
if (output == "D")
output = "nodelete";
if (output == "A")
output = "noadd";
return output;
}
}
//if (output == "E" )
//{
// LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
// eSTP.Datas();
// DataSet ds = new DataSet();
// ds = eSTP.List22("P_PENGTO", "Z", param2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "");
// dt = ds.Tables[0];
// if (dt.Rows.Count > 0)
// {
// output = "Z";
// return output;
// }
//}
if (output == "I" || output == "E" || output == "D")
{
param17 = userid;
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
eSTP.save22("P_PENGTO", param1, param2, param3, param4, param5, param6, param7, param8, param9, param10, param11, param12, param13, param14, param15, param16, userid, param18, param19, param20, param21, param22);
return output;
}
else
output = "gagal";
}
catch (Exception ex)
{
Response.Write(ex.Message);
Response.End();
return ex.Message;
}
return output;
}
示例10: ServiceSelect
private bool ServiceSelect(string sm)
{
switch (sm)
{
case "V":
var Param1 = Request.Params["param1"].ToString();
var Param2 = Request.Params["param2"].ToString();
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
ds = eSTP.List13("P_PENLAP", Param1, Param2, "", "", "", "", "", "", "", "", "", "", "");
dt = ds.Tables[0];
Response.ContentType = "text/plain";
Response.Write(dt.Rows[0]["penlapNmrPen"].ToString() + "|"); //
Response.Write(dt.Rows[0]["penlapDatess"].ToString() + "|"); //1
Response.Write(dt.Rows[0]["penlapTglukr"].ToString() + "|"); //2
Response.Write(dt.Rows[0]["penlapTglJdw"].ToString() + "|"); //3
Response.Write(dt.Rows[0]["praregNmrPra"].ToString() + "|"); //4
Response.Write(dt.Rows[0]["penlapKtngan"].ToString() + "|"); //5
Response.Write(dt.Rows[0]["penlapLanjut"].ToString() + "|"); //6
Response.Write(dt.Rows[0]["PenlapEkspsi"].ToString() + "|"); //7
Response.Write(dt.Rows[0]["penlapKeteks"].ToString() + "|"); //8
Response.Write(dt.Rows[0]["penlapUserid"].ToString() + "|"); //9
Response.Write(dt.Rows[0]["penlapUserdt"].ToString() + "|"); //10
Response.Write(dt.Rows[0]["penlapAssign"].ToString() + "|"); //11
Response.Write(dt.Rows[0]["praregNmrPra"].ToString() + "|"); //12
Response.Write(dt.Rows[0]["praregLokkab"].ToString() + "|"); //13
Response.Write(dt.Rows[0]["praregLokkec"].ToString() + "|"); //14
Response.Write(dt.Rows[0]["praregLokdes"].ToString() + "|"); //15
Response.Write(dt.Rows[0]["MidentNamass"].ToString() + "|"); //16
dt.Dispose();
Response.End();
Response.End();
return false;
//return false;
case "CRUD":
Response.ContentType = "text/plain";
Response.Write(Save());
Response.End();
return false;
case "df":
Response.Clear();
string namafile = (Request.Params["filelama"] is object ? Request.Params["filelama"].ToString() : "");
String urlfile = (Request.Params["namafile"] is object ? Request.Params["namafile"].ToString() : "");
String randomfile = (Request.Params["random"] is object ? Request.Params["random"].ToString() : "");
string type = "";
switch (namafile.Substring(namafile.Length - 4))
{
case ".htm":
case ".html":
type = "text/HTML";
break;
case ".txt":
type = "text/plain";
break;
case ".doc":
case ".docx":
case ".rtf":
type = "Application/msword";
break;
case ".xls":
case ".xlsx":
type = "Application/msexcel";
break;
case ".zip":
case ".rar":
type = "application/zip";
break;
case ".pdf":
type = "application/pdf";
break;
case ".jpg":
type = "image/JPG";
break;
case ".pgn":
type = "image/PNG";
break;
case ".tif":
type = "image/tif";
break;
}
Response.AddHeader("content-disposition", "attachment;filename=" + namafile + "");
Response.ContentType = type;
Response.WriteFile(Server.MapPath(@"~/uploaddocument/" + Request.Params["namafile"].ToString().Replace("&", "&")));
Response.End();
return false;
//.........这里部分代码省略.........
示例11: SaveOS
private String SaveOS()
{
String param1 = ""; if (Request.Params["param1"] is object) param1 = Request.Params["param1"].ToString();
String param2 = ""; if (Request.Params["param2"] is object) param2 = Request.Params["param2"].ToString();
String param3 = ""; if (Request.Params["param3"] is object) param3 = Request.Params["param3"].ToString();
String param4 = ""; if (Request.Params["param4"] is object) param4 = Request.Params["param4"].ToString();
String param5 = ""; if (Request.Params["param5"] is object) param5 = Request.Params["param5"].ToString();
String param6 = ""; if (Request.Params["param6"] is object) param6 = Request.Params["param6"].ToString();
String param7 = ""; if (Request.Params["param7"] is object) param7 = Request.Params["param7"].ToString();
String param8 = ""; if (Request.Params["param8"] is object) param8 = Request.Params["param8"].ToString();
//String sql = "";
String output = "";
try
{
output = param1;
if (output == "I" || output == "DO" || output == "IR")
{
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
eSTP.save8("P_VISUMS_D", param1, param2, param3, param4, param5, param6, param7, param8);
return output;
}
else
output = "gagal";
}
catch (Exception ex)
{
Response.Write(ex.Message);
Response.End();
return ex.Message;
}
return output;
}
示例12: ServiceSelect
private bool ServiceSelect(string sm)
{
switch (sm)
{
case "E":
Response.ContentType = "text/plain";
var param1 = Request.Params["param1"].ToString();
var param2 = Request.Params["param2"].ToString();
var param4 = Request.Params["param4"].ToString();
var param5 = Request.Params["param5"].ToString();
var param6 = Request.Params["param6"].ToString();
var param7 = Request.Params["param7"].ToString();
var param12 = Request.Params["param12"].ToString();
var param13 = Session["userid"].ToString();
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
eSTP.save14("P_BERKS1", param1, param2, "", param4, param5, param6, param7, "", "", "", "", param12, param13, "");
Response.End();
return false;
case "L":
var param1L = Request.Params["param1"].ToString();
var param2L = Request.Params["param2"].ToString();
var param4L = Request.Params["param4"].ToString();
var param5L = Request.Params["param5"].ToString();
LANDCOMP.ExecuteSTP eSTP_L = new LANDCOMP.ExecuteSTP();
eSTP_L.Datas();
DataSet ds_L = new DataSet();
ds_L = eSTP_L.List14("P_BERKS1", param1L, param2L, "", param4L, param5L, "", "", "", "", "", "", "", "", "");
dt = ds_L.Tables[0];
Response.ContentType = "application/xhtml+xml";
Response.Write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
Response.Write("<rows>");
for (int i = 0; i < dt.Rows.Count; i++)
{
Random r = new Random();
Response.Write("<row id=\"" + (i + 1).ToString() + "\">");
Response.Write("<cell>" + (i + 1).ToString() + "</cell>"); // Untuk Membuat Angka
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["berks1NmrBr1"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["pengtoNmrPid"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["negosiNmrReg"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["visumsNovism"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["berks1Assign"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["berks1Lanjut"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["Assign"].ToString()) + "</cell>");
Response.Write("<cell>" + RemoveWhiteSpace(dt.Rows[i]["negosiNmrNeg"].ToString()) + "</cell>");
Response.Write("</row>");
}
Response.Write("</rows>");
dt.Dispose();
Response.End();
Response.End();
return false;
default:
Response.ContentType = "text/plain";
Response.End();
return true;
}
}
示例13: SaveUploadRegistrasi
private String SaveUploadRegistrasi()
{
string IDRegistrasi = Request.Params["IDREGISTRASI"].ToString();
string _stNamaFile = Request.Params["NAMA"].ToString();
string _stKeterangan = Request.Params["KETERANGAN"].ToString();
string _stNomor = Request.Params["NOMOR"].ToString();
LANDCOMP.UploadFile uf = new LANDCOMP.UploadFile();
uf.Datas();
string _stDates = DateTime.Today.ToString("yyyyMMdd");
string param1 = Request.Params["param1"].ToString();
string param5 = Request.Params["param5"].ToString();
string user = Request.Params["user"].ToString();
string wilayah = Request.Params["wilay"].ToString();
string _stUploadKeterangan = "";
_stUploadKeterangan = _stKeterangan;
string uploadFolder = Request.PhysicalApplicationPath + "uploadDocument\\";
string extension = Path.GetExtension(_stNamaFile);
LANDCOMP.paramz ext = new LANDCOMP.paramz();
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
//eSTP.save5("P_REGIST_U", param1, IDRegistrasi, "", param5, _stKeterangan);
if (extension != ".exe")
{
uf.UploadFilesWeb("I", user, _stDates, "Master Identitas", param5, uploadFolder, IDRegistrasi, _stNomor + extension, _stNamaFile, _stUploadKeterangan);
}
var _stOutput = IDRegistrasi;
return _stOutput;
}
示例14: ServiceSelect
private bool ServiceSelect(string sm)
{
switch (sm)
{
case "select":
var Param1 = Request.Params["param1"].ToString();
var Param2 = Request.Params["param2"].ToString();
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
ds = eSTP.select9("landcomp.P_PRAREG", Param1, Param2, "", "", "", "", "", "","");
dt = ds.Tables[0];
Response.ContentType = "text/plain";
Response.Write(dt.Rows[0]["praregNmrPra"].ToString() + "|"); //0
Response.Write(dt.Rows[0]["praregIdents"].ToString() + "|"); //1
Response.Write(dt.Rows[0]["MidentNamass"].ToString() + "|"); //2
Response.Write(dt.Rows[0]["MidentJnsKel"].ToString() + "|"); //3
Response.Write(dt.Rows[0]["MidentTmplhr"].ToString() + "|"); //4
Response.Write(dt.Rows[0]["MidentTgllhr"].ToString() + "|"); //5
Response.Write(dt.Rows[0]["MidentPekerj"].ToString() + "|"); //6
Response.Write(dt.Rows[0]["MidentAlamat"].ToString() + "|"); //7
Response.Write(dt.Rows[0]["MidentNmrHps"].ToString() + "|"); //8
Response.Write(dt.Rows[0]["MidentJnsIdn"].ToString() + "|"); //9
Response.Write(dt.Rows[0]["praregLokkab"].ToString() + "|"); //10
Response.Write(dt.Rows[0]["praregLokkec"].ToString() + "|"); //11
Response.Write(dt.Rows[0]["praregLokdes"].ToString() + "|"); //12
Response.Write(dt.Rows[0]["praregLanjut"].ToString() + "|"); //13
dt.Dispose();
Response.End();
Response.End();
return false;
case "Save":
Response.ContentType = "text/plain";
Response.Write(Save());
Response.End();
return false;
case "Delete":
Response.ContentType = "text/plain";
Response.Write(Delete());
Response.End();
return false;
case "dd":
Response.ContentType = "text/plain";
Response.Write(Admin());
Response.End();
return false;
default:
Response.ContentType = "text/plain";
Response.End();
return true;
}
}
示例15: HakAkses
public void HakAkses()
{
if (Session["userid"] is object)
{
userid = Session["userid"].ToString();
if (Session["groups"] is object)
{
groups = Session["groups"].ToString();
}
}
if (!(Session["userid"] is object))
{
Response.Write("<script language=\"javascript\" type=\"text/javascript\">");
Response.Write("alert('Session sudah habis. Silakan login kembali.');");
Response.Write("location.href = '../login.aspx';");
Response.Write("</script>");
}
LANDCOMP.ExecuteSTP eSTP = new LANDCOMP.ExecuteSTP();
eSTP.Datas();
DataSet ds = new DataSet();
var Param1 = "";
bool cek = true;
if (cek && (Request.Params["param1"] is object))
{
Param1 = Request.Params["param1"].ToString();
}
else
{
Param1 = "";
}
ds = eSTP.List8("P_MENU", "CHA", "", groups, "", "", "", "", "");
dt = ds.Tables[0];
MasterIdentitasView = dt.Rows[11]["MasterIdentitas"].ToString(); //0
MasterIdentitasEdit = dt.Rows[11]["MasterIdentitasEdit"].ToString(); //1
MasterIdentitasDelete = dt.Rows[11]["MasterIdentitasDelete"].ToString(); //2
MasterIdentitasAssign = dt.Rows[11]["MasterIdentitasAssign"].ToString(); //3
dt.Dispose();
if (Param1 == "")
{
if (MasterIdentitasView.ToString() != "1")
{
if (groups.ToString() != "1")
{
Response.Write("<script language=\"javascript\" type=\"text/javascript\">");
Response.Write("alert('Anda Tidak Memiliki Akses Untuk Menambah Di Modul Ini');");
Response.Write("location.href = 'home.aspx';");
Response.Write("</script>");
}
}
}
else if (Param1 == "F")
{
if (MasterIdentitasView.ToString() != "1")
{
if (groups.ToString() != "1")
{
Response.Write("<script language=\"javascript\" type=\"text/javascript\">");
Response.Write("alert('Anda Tidak Memiliki Akses Untuk Melihat Di Modul Ini');");
Response.Write("location.href = 'home.aspx';");
Response.Write("</script>");
}
}
}
else if (Param1 == "E")
{
if (MasterIdentitasEdit.ToString() != "1")
{
if (groups.ToString() != "1")
{
Response.Write("<script language=\"javascript\" type=\"text/javascript\">");
Response.Write("alert('Anda Tidak Memiliki Akses Untuk Edit Di Modul Ini');");
Response.Write("location.href = 'home.aspx';");
Response.Write("</script>");
}
}
}
else if (Param1.ToString() == "D")
{
if (MasterIdentitasDelete.ToString() != "1")
{
if (groups.ToString() != "1")
{
Response.Write("<script language=\"javascript\" type=\"text/javascript\">");
Response.Write("alert('Anda Tidak Memiliki Akses Untuk Delete Di Modul Ini');");
Response.Write("location.href = 'home.aspx';");
Response.Write("</script>");
//.........这里部分代码省略.........