I'm dynamically creating PDFs and trying to create an objectdatasourc e
completely in the code behind, but I can't figure out how to call the
selected event. Here's what I have so far...
string App1ID = 1234;
ObjectDataSourc e Appendix1 = new ObjectDataSourc e();
Appendix1.TypeN ame = "Appendix1B LL";
Appendix1.Selec tMethod = "GetAppendix1By Appendix1ID";
Appendix1.Selec tParameters.Add ("Appendix1I D", App1ID);
Appendix1.Selec t();
--Here's where I need to call the Selected event--
Thanks in advance for your help.
-Sean
completely in the code behind, but I can't figure out how to call the
selected event. Here's what I have so far...
string App1ID = 1234;
ObjectDataSourc e Appendix1 = new ObjectDataSourc e();
Appendix1.TypeN ame = "Appendix1B LL";
Appendix1.Selec tMethod = "GetAppendix1By Appendix1ID";
Appendix1.Selec tParameters.Add ("Appendix1I D", App1ID);
Appendix1.Selec t();
--Here's where I need to call the Selected event--
Thanks in advance for your help.
-Sean
Comment