Is it possible by web.config or otherwise ....please help

  • Thread starter Thread starter Pial
  • Start date Start date
Use HTML frames..

HTH

--albert


| hi
|
| I need to have a special requirement that all page URL throughout the
| application should be displayed as a common page : say (
| www.test.com/common.aspx).
|
| say : if i type : www.test.com/login.aspx it will work for login.aspx
| page but will shown www.test.com/common.aspx in the url section.
| client do not want to see the page name rather then common.aspx page .
|
|
| any help will be appriciated......
|
|
| pial
 
There is an elegant architecture of doing this:

A. One aspx page called ( common.aspx)
B. Convert all other pages from .Net page to .NEt control. So instead of
..aspx you can have ascx with page directive of each page like

<%@ Control Language="c#" AutoEventWireup="false"
Codebehind="pagename.ascx.cs"%>

So in this architecture your common.aspx serves the purpose of loading and
rendering all the pages (now controls).

Harman Sahni
MS.Net Project Manager
 
Back
Top