I have an asp.net login page. There are many users and they have different roles. Their username and password fields are verified and then based on the "Branch" field (computer science, electronics, etc), the user should be redirected to a particular page. How do i do it? I need some help.
here is the aspx file..
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Login1.aspx.cs" Inherits="DQ_DataQuest.Execution.Login1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <title></title> <style type="text/css"> body { background: #161616; color: #888; font-family: 'Ubuntu Mono' ...

Go to the complete details ...