How can i get parent page name in the user control page using C#

asp.net, c#, html

Solution

Try using within the control code:

this.Page.Title

Problem

i have about 10 pages using the same User Control,now i need to know each time what Page invoked the user control.and i need the page name(title).

Original source