I have a method written in WebForm (means .aspx page) & now
I want to call this method in WebUserControl (means .ascx
page) what should I have to do?
Answer Posted / jp
Use the controls page property and typecast it to the page
class name.
eg:
Page Default.aspx has a control MyControl.ascx
Page Default.aspx.cs has a method MyMethod()
in MyControl.ascx.cs
((Default)(this.Page)).MyMethod();
Is This Answer Correct ? | 7 Yes | 8 No |
Post New Answer View All Answers
Which is faster union or union all?
Is global asax mandatory?
Define satellite assemblies.
Where is session cookies stored?
What is server side session management?
What is asp.net mvc? : asp.net mvc
What is State Management in .Net and how many ways are there to maintain a state in .Net? What is view state?
Why mvc is faster than asp.net? : Asp.Net MVC
How much is the pay-for-use service if I chose not to use microsoft-sponsored advertising?
How to find last error which occurred in Asp.net ?
What is the default Orientation property in a Menu control?
What are the different ways you would consider sending data across pages in ASP (i.e between asp to asp)?
How can we apply themes to an asp.net application?
Diff between web user control and web custom control?
What is distributed system in asp.net?