Page.PreviousPage

  • Thread starter Thread starter David C
  • Start date Start date
D

David C

Will the Page.PreviousPage be able to read controls from a non-aspx page,
e.g. an html page? Is there a better way to get info. from
textboxes/controls? Thanks.

David
 
PreviousPage will not work with non-ASP.NET pages. To move data using
standard .htm pages, you need to revert to traditional means like
querystrings and forms.
 
PreviousPage only works after a server transfer, as this is the only time
both pages are in memory at the same time.

-- bruce (sqlwork.com)
 
Back
Top