Server.Transfer/Master Pages

  • Thread starter Thread starter Chris Price via .NET 247
  • Start date Start date
C

Chris Price via .NET 247

I am getting an error when I use Server.Transfer to navigate to anew page which uses the same Master Page Template. The errorindicates that the region ids must be unique. Any suggestions? Iwould like to be able to continue using a single template forthe site.
 
I assume this is Whidbey, since master pages are not implemented in 1.0 or
1.1.. I would call that a bug in the 2.0 Framework. It should be ironed out
before release next year. In the mean time, you can always try
Response.Redirect, which will not have the same problem, as it uses client
side redirection.

For Whidbey info, I would venture the Whidbey beta groups are a better shot
(now open to public, although you do have to set up your news client to log
in (publicly available user/pwd combo).

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************
Think Outside the Box!
************************************************
I am getting an error when I use Server.Transfer to navigate to a new page
which uses the same Master Page Template. The error indicates that the
region ids must be unique. Any suggestions? I would like to be able to
continue using a single template for the site.
 
Try to use response.redirect.

chanmm


I am getting an error when I use Server.Transfer to navigate to a new page
which uses the same Master Page Template. The error indicates that the
region ids must be unique. Any suggestions? I would like to be able to
continue using a single template for the site.
 
Back
Top