Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi, we are have 2 domains implemented which is / for English-US and /id for Indonesian. There is a button in our website that pointed to an action in the surface controller. There are 2 href modifications in the <a> tag I've tried :
/
/id
<a>
href="umbraco/surface/MemberCVSurface/DeleteCV?id=3"
http://localhost:1234/id/umbraco/surface/MemberCVSurface/DeleteCV?id=3
href="/umbraco/surface/MemberCVSurface/DeleteCV?id=3"
http://localhost:1234/umbraco/surface/MemberCVSurface/DeleteCV?id=3
Do I need to implement custom routing for this ? If yes, please give me some examples for the routing.
Thank you.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Link with domain not hitting Surface controller
Hi, we are have 2 domains implemented which is
/
for English-US and/id
for Indonesian. There is a button in our website that pointed to an action in the surface controller. There are 2 href modifications in the<a>
tag I've tried :href="umbraco/surface/MemberCVSurface/DeleteCV?id=3"
will generatehttp://localhost:1234/id/umbraco/surface/MemberCVSurface/DeleteCV?id=3
but it will result 404 not found.href="/umbraco/surface/MemberCVSurface/DeleteCV?id=3"
will generatehttp://localhost:1234/umbraco/surface/MemberCVSurface/DeleteCV?id=3
and it hits the controller, but the Culture is detected as English-US.Do I need to implement custom routing for this ? If yes, please give me some examples for the routing.
Thank you.
is working on a reply...