public void testFunc2(CanvasControlLibrary.Models.CanvasControlLibrary CCL)
 {
     CCL.LabelPropsArray[0].Text = (string) CCL.Params[0] + (string) CCL.Params[1];
 }
示例#2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     movieIndexes = new ArrayList {
         new ArrayList {
             "Phoenix Mills", new ArrayList {
                 "Fantastic Four", "Ferris Bueller's Day Off", "Incredible Hulk"
             }
         },
         new ArrayList {
             "Juhu", new ArrayList {
                 "Iron Man", "Point Break", "Spider Man 2"
             }
         }, new ArrayList {
             "Nariman Point", new ArrayList {
                 "Spider Man 4", "Spider Man 3", "The Avengers"
             }
         },
         new ArrayList {
             "Chitrapur", new  ArrayList {
                 "Thor", "Wolverine", "X-Men First Class"
             }
         }, new ArrayList {
             "Khari Baoli", new ArrayList {
                 "GI Joe Rise of Cobra", "The Avengers", "Wolverine"
             }
         },
         new ArrayList {
             "Lakshmi Garden", new ArrayList {
                 "Thor", "Point Break", "Iron Man"
             }
         }, new ArrayList {
             "Gandhi Nagar", new ArrayList {
                 "Spider Man 2", "Incredible Hulk", "GI Joe Rise of Cobra"
             }
         },
         new ArrayList {
             "Lake City", new ArrayList {
                 "The Avengers", "X-Men First Class", "Iron Man"
             }
         }, new ArrayList {
             "Rajaji Nagar", new ArrayList {
                 "Fantastic Four", "Wolverine", "Thor"
             }
         },
         new ArrayList {
             "Harrington Road", new ArrayList {
                 "The Avengers", "X-Men First Class", "Iron Man"
             }
         }, new ArrayList {
             "Boat Club", new ArrayList {
                 "GI Joe Rise of Cobra", "Spider Man 3", "Incredible Hulk"
             }
         },
         new ArrayList {
             "Chetpet", new ArrayList {
                 "Thor", "Fantastic Four", "The Avengers"
             }
         }
     };
     ccl = new CanvasControlLibrary(Request.InputStream);
     ccl.InvokeServerSideFunction(this.Page);
     ccl.SendVars(Response.OutputStream, parameters);
 }
 public void ClickButton(CanvasControlLibrary.Models.CanvasControlLibrary CCL)
 {
     CCL.ReturnParams = CCL.Params;
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     ccl = new CanvasControlLibrary(Request.InputStream);
     ccl.InvokeServerSideFunction(this.Page);
     ccl.SendVars(Response.OutputStream, parameters);
 }
 protected override void Render(HtmlTextWriter writer)
 {
     base.Render(writer);
     CanvasControlLibrary.StartSession(writer);
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     movieIndexes = new ArrayList { new ArrayList { "Phoenix Mills", new ArrayList { "Fantastic Four", "Ferris Bueller's Day Off", "Incredible Hulk" } },
         new ArrayList { "Juhu", new ArrayList { "Iron Man", "Point Break", "Spider Man 2" } }, new ArrayList {"Nariman Point", new ArrayList{"Spider Man 4", "Spider Man 3", "The Avengers"}},
         new ArrayList{"Chitrapur", new  ArrayList{"Thor", "Wolverine", "X-Men First Class"}}, new ArrayList{"Khari Baoli", new ArrayList{"GI Joe Rise of Cobra", "The Avengers", "Wolverine"}},
     new ArrayList{"Lakshmi Garden", new ArrayList{"Thor", "Point Break", "Iron Man"}}, new ArrayList{"Gandhi Nagar", new ArrayList{"Spider Man 2", "Incredible Hulk", "GI Joe Rise of Cobra"}},
     new ArrayList{"Lake City", new ArrayList{"The Avengers", "X-Men First Class", "Iron Man"}}, new ArrayList{"Rajaji Nagar", new ArrayList{"Fantastic Four", "Wolverine", "Thor"}},
     new ArrayList{"Harrington Road", new ArrayList{"The Avengers", "X-Men First Class", "Iron Man"}}, new ArrayList{"Boat Club", new ArrayList{"GI Joe Rise of Cobra", "Spider Man 3", "Incredible Hulk"}},
     new ArrayList{"Chetpet", new ArrayList{"Thor", "Fantastic Four", "The Avengers"}}};
     ccl = new CanvasControlLibrary(Request.InputStream);
     ccl.InvokeServerSideFunction(this.Page);
     ccl.SendVars(Response.OutputStream, parameters);
 }
示例#7
0
 protected void Page_Load(object sender, EventArgs e)
 {
     ccl = new CanvasControlLibrary(Request.InputStream);
     ccl.InvokeServerSideFunction(this.Page);
     ccl.SendVars(Response.OutputStream, parameters);
 }