RoadFlow2.1 临时演示

GetSubTableData.aspx 611B

12345678910111213
  1. <%@ Page Language="C#" %>
  2. <%
  3. string secondtable = Request["secondtable"];
  4. string primarytablefiled = Request["primarytablefiled"];
  5. string secondtableprimarykey = Request["secondtableprimarykey"];
  6. string primarytablefiledvalue = Request["primarytablefiledvalue"];
  7. string secondtablerelationfield=Request["secondtablerelationfield"];
  8. string dbconnid = Request["dbconnid"];
  9. LitJson.JsonData data = new RoadFlow.Platform.WorkFlow().GetSubTableData(dbconnid, secondtable, secondtablerelationfield, primarytablefiledvalue, secondtableprimarykey);
  10. Response.Write(data.ToJson());
  11. %>