One page using querystring or many folders and pages?

Posted by ClarkeyBoy on Programmers See other posts from Programmers or by ClarkeyBoy
Published on 2012-09-09T12:47:34Z Indexed on 2012/09/09 15:48 UTC
Read the original article Hit count: 390

I have an application where I have the 'core' code in one folder for which there is a virtual directory in the root, such that I can include any core files using /myApp/core/bla.asp. I then have two folders outside of this with a default.asp which currently use the querystring to define what page should be displayed. One page is for general users, the other will only be accessible to users who have permission to manage users / usergroups / permissions. The core code checks the querystring and then checks the permissions for that user. An example of this as it is now is default.asp?action=view&viewtype=list&objectid=server. I am not worried about SEO as this is an internal app and uses Windows Auth.

My question is, is it better the way it is now or would it be better to have something like the following:

  • /server/view/list/
  • /server/view/?id=123
  • /server/create/
  • /server/edit/?id=123
  • /server/remove/?id=123

In the above folders I would have a home page which defines all the variables which are currently determined by the querystring - in /server/create/ for example, I would define the action as 'create', object name as 'server' and so on.

In terms of future development, I really have no idea which method would be best. I think the 2nd method would be best in terms of following what page does what but this is such a huge change to make at this stage that I would really like some opinions, preferably based on experience.

PS Sorry if the tags are wrong - I am new to this forum and thought this was a bit too much of a discussion for StackOverflow as that is very much right / wrong answer based. I got the idea SE is more discussion based.

© Programmers or respective owner

Related posts about web-development

Related posts about web-applications