user2843511
user2843511

Reputation: 3

N2CMS : Using Server.Transfer with contentItem page

Is it possible to use Server.Tranfer() method between 2 ContentItem Pages? I'm trying to substitute content of one with another, but Transfer() method throws an exception because server cannot retrieve ContentItem page.

Upvotes: 0

Views: 57

Answers (1)

Ben H
Ben H

Reputation: 3236

Yes, you can use Server.Transfer, but both the source and the destination servers must be running the same version of N2 connected to the same database. Otherwise, you should use Response.Redirect instead.

Upvotes: 1

Related Questions