java - how to bookmark a dynamically created aspx page? -


there site wich in address bar shows "http://example.com/examplepage.aspx". if have parameters behind copy one. since doesn't, how bookmark page. doesn't have bookmark, @ least easy way access page. (fyi know basic html , java, maybe it's possible programmatically). thnx

generally dynamic pages (taking in context question) not book mark friendly.

you sniff incoming request, , create fake form can submit later.

however there may situations there parameters such session id valid small periods of time.
should read on sessions. in simple terms, session assigned users accessing website. have expiry period. if stay idle beyond set time (determined developer) not able in. , every time log in, may assign new session.

you have noticed, websites automatically log in, done of cookies. cookies work in tandem sessions, store basic information, next time come website, able identify returning user , provide access.

then again, pages don't use sessions, might have own custom way of identifying users.

bookmarks can used in dynamic pages, if code allows send requests, if don't have other parameters block you.

to summarize:

  • dynamic page not bookmark friendly.
  • there may parameters used access webpage change constantly, cannot save.
  • you may able dynamic pages using bookmarks, if don't use of dynamically changing parameters.

since know java, should read on jsps/servlets understanding of happens behind scenes in dynamic pages.

hope answers questions.


Comments