about application name
-
I want to get the name of current active page of the applicaton on runtime. e.g. when a button is pushed, then i get the name of the page in which this button is prensent. ( in Asp.net) Can some body help me in this regard.
Take a look at the
[Request.Url](http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebhttprequestclassurltopic.asp)[[^](http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebhttprequestclassurltopic.asp)]
property. If you're looking for the filename of the page, you can extract it from there. Hope that helps. :) --Jesse -
Take a look at the
[Request.Url](http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebhttprequestclassurltopic.asp)[[^](http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebhttprequestclassurltopic.asp)]
property. If you're looking for the filename of the page, you can extract it from there. Hope that helps. :) --Jesse