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
Scott M. - 09 Apr 2008 21:58 GMT
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.
> 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
bruce barker - 09 Apr 2008 23:37 GMT
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)
> 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