Exemple #1
0
 private void Page_Load(object sender, System.EventArgs e)
 {
     if (Request.Params["type"] == "ins")
     {
         lblTitle.Text = "Instruction";
         bject obj = SQLStatic.SQL.ExecScaler("select pkg_web.get_page_instruction('" + Request.Params["SessionId"] + "','" + Request.Params["path"] + "','1') from dual");
         if (obj != null)
         {
             lblInstruction.Text = obj.ToString();
         }
     }
     else if (Request.Params["type"].Trim() == "spe".Trim())
     {
         lblTitle.Text = "Special Message";
         object obj = SQLStatic.SQL.ExecScaler("select pkg_web.get_page_special_msg('" + Request.Params["SessionId"] + "','" + Request.Params["path"] + "','1','1','') from dual", ConnectionString);
         if (obj != null)
         {
             lblInstruction.Text = obj.ToString();
         }
     }
 }
Exemple #2
0
 public object[] ConverBack(bject value, Type targetType, object parameter, CultureInfo culture)
 {
     throw new NotImplementedException();
 }