hi all.........:)
actually im new to .net..
can we have routing in asp.net 3.5????
if yes, how?

Recommended Answers

All 10 Replies

>can we have routing in asp.net 3.5????

Do you want know about ASP.NET MVC routing?

if we dont have mvc then using just .net 3.5 ...
can we do routing??????????

ya ,i have seen earlier also..
but it requires .net 3.5 sp1,
where as i dont have sp1...

Take a look at.

>take a look at what???

Download .net35 sp1. You know that, for routing, you have to use framework 3.5 or 4.0.

yup!!! i know....
thanq
so we cant do routing without sp1..right !!!!!!!!

>so we cant do routing without sp1..right !!!!!!!!

Right but you can think about url-rewrite (however, url-rewrite and url-routing is not same).

Please mark this thread as solved if you have found an answer to your question and good luck!

Hi

I will give you some code. to solve the issue of routing in asp.net.It will help you.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;

namespace MvcApplication1
{
    // Note: For instructions on enabling IIS6 or IIS7 classic mode, 
    // visit [url]http://go.microsoft.com/?LinkId=9394801[/url]

    public class MvcApplication : System.Web.HttpApplication
    {
        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapRoute(
                "Default",                                              // Route name
                "{controller}/{action}/{id}",                           // URL with parameters
                new { controller = "Home", action = "Index", id = "" }  // Parameter defaults
            );

        }

        protected void Application_Start()
        {
            RegisterRoutes(RouteTable.Routes);
        }
    }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.