You need to sign in to do that
Don't have an account?

Getting List of Visual force pages in my Org
Is there any way to get the List of Visual Force pages in My Org pragmatically?
You need to sign in to do that
Don't have an account?
Is there any way to get the List of Visual Force pages in My Org pragmatically?
Thanks
All Answers
You can fire following soql on ApexPage object and get a list of all pages in the org :-
Select Id, Name,MasterLabel, ApiVersion from ApexPage
Is this only possible only through web service API or can i use it via nomarl Apex code?
Just Use this SOQL query in Apex languge and APex code
List<Apexpage> lst=[select id,name from Apexpage];
Set<String> listApexpage=new Set<String>():
for(Apexpage temp:lst)
listApexpage.add(temp.name);
Thanks