S
Sean
I'm dynamically creating PDFs and trying to create an objectdatasource
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;
ObjectDataSource Appendix1 = new ObjectDataSource();
Appendix1.TypeName = "Appendix1BLL";
Appendix1.SelectMethod = "GetAppendix1ByAppendix1ID";
Appendix1.SelectParameters.Add("Appendix1ID", App1ID);
Appendix1.Select();
--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;
ObjectDataSource Appendix1 = new ObjectDataSource();
Appendix1.TypeName = "Appendix1BLL";
Appendix1.SelectMethod = "GetAppendix1ByAppendix1ID";
Appendix1.SelectParameters.Add("Appendix1ID", App1ID);
Appendix1.Select();
--Here's where I need to call the Selected event--
Thanks in advance for your help.
-Sean