Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6023433
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T04:00:16+00:00 2026-05-23T04:00:16+00:00

MVC has great tools for building urls inside an MVC app by using routing.

  • 0

MVC has great tools for building urls inside an MVC app by using routing. Routing by controller and action lets us avoid hard coding urls in markup.

But we have a bunch of ancillary services that need to create urls for marketing emails.

For instance, our email marketing campaigns may need to build a url for an offer. The MVC app knows how to build the url to the offer detail, but is there a clever way of doing this for the service app? Can we/should we move routing into a separate dll and reference it from one place?

Success stories/horror stories are appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T04:00:17+00:00Added an answer on May 23, 2026 at 4:00 am

    it sounds like you should be using a catchall url to lookup actions you can manage in a DB such as:

    Route like this

    routes.MapRoute(
                                   "MailCampaigns", 
                                   "/mailcampaigns/{*url}", 
                                  new {controller = "MailCampaigns", action = "Incoming" }
                                  );
    
    
    public ActionResult Incoming(string url)
    {
    
       //parse the url and perform actions accordingly
    
       var actionInfo = repository.Query<ActionInfo>().Where(x => x.Url == url).SingleOrDefault();
    
     return Redirect(actionInfo.TargetUrl);
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using ASP.NET-MVC and nHibernate for the first time. Great tools, but big
Say you create a form using ASP.NET MVC that has a dynamic number of
Has anybody established a good naming convention for action in MVC? I was specifically
My application (Asp.Net MVC) has great interaction with the user interface (jQuery/js). For example,
Im using Spring MVC by itself till now, works great, but i hear from
I've integrated Asp.net MVC with Sharepoint site. It works great. But I'm using default
We have an existing MVC application that we're building using TeamCity and things were
aspnet mvc has the HandleError filter that will return a view if an error
ASP.NET MVC has been discussed on this forum a few times. I'm about to
My biggest hurdle with getting started with an MVC framework has to do with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.