Run time ananlysis of IsPastBack and PostBackUrl
The default load page is Default.aspx, ( how we get that
Link )

Now void Page_load() is loaded by while page is being loaded to a
web-browser, therefore if (!IsPostBack), this condition is to be
true, therefore all the messages will printed accordingly.
Please click on Hyperlink, note the path/address is shown at the
task bar panel.

Page is loaded with void Page_load(), now try to reload

Note Re-Load, directs to self, as show in this code snippet
PostBackUrl="~/Find_control.aspx";

The above action will initiate the function void
page_reloaded(object sender, EventArgs e), that would need two built
in parameters to catch the events

What if you don't provide the parameter ? Below I created a
condition, with no parameter, and found that during re-building up
the solution, the compiler reported two errors.


Error 1 No overload for 'page_reloaded' matches delegate 'System.EventHandler'
C:\inetpub\wwwroot\aspnet.35\mm.cont6\Find_control.aspx 92 30
http://manas6/aspnet.35/mm.cont6/
Error 2 No overload for 'page_reloaded' matches delegate 'System.EventHandler'
C:\inetpub\wwwroot\aspnet.35\mm.cont6\Find_control.aspx 93 30
http://manas6/aspnet.35/mm.cont6/