Click here to Skip to main content
15,898,134 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerSTOP CROSS POSTING Pin
leckey17-Aug-07 4:45
leckey17-Aug-07 4:45 
QuestionNot able to WRAP TEXT in MOZILLA Pin
jophinmichael17-Aug-07 3:19
jophinmichael17-Aug-07 3:19 
AnswerSTOP CROSS POSTING Pin
leckey17-Aug-07 4:45
leckey17-Aug-07 4:45 
QuestionUrl mapping? Pin
Ed.Poore17-Aug-07 3:18
Ed.Poore17-Aug-07 3:18 
QuestionComparing userdetails. Pin
bhattiprolu17-Aug-07 3:15
bhattiprolu17-Aug-07 3:15 
AnswerRe: Comparing userdetails. Pin
Talal Sultan17-Aug-07 5:28
Talal Sultan17-Aug-07 5:28 
Questionnested masterpage Pin
md_refay17-Aug-07 3:10
md_refay17-Aug-07 3:10 
AnswerRe: nested masterpage Pin
Talal Sultan17-Aug-07 3:43
Talal Sultan17-Aug-07 3:43 
Nested means one inside another (when you are talking about a page), inherits means one derives from another (when you're usually talking about classes)

You cannot put a master page inside a master page. You can probably derive a master page class from another master page class. That means that if you have a master page with its corresponding code-behind class, you can create another master page and make it inherit from the first one.

1st Master page:

public partial class Master1: System.Web.UI.MasterPage
{
......
}


2nd Master page inherits from first one:

public partial class Master2 : Master2
{
....
}


I have never done that so I don't know if it works.

Talal

-- If this is a post that has been helpful to you, please vote for it. Thank you!

"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning."
--Rich Cook

QuestionHow To Render HTML In ASP:DataGrid Pin
Sassan Komeili Zadeh17-Aug-07 2:58
Sassan Komeili Zadeh17-Aug-07 2:58 
AnswerRe: How To Render HTML In ASP:DataGrid Pin
Imran Khan Pathan17-Aug-07 3:01
Imran Khan Pathan17-Aug-07 3:01 
GeneralRe: How To Render HTML In ASP:DataGrid Pin
Sassan Komeili Zadeh17-Aug-07 3:36
Sassan Komeili Zadeh17-Aug-07 3:36 
GeneralRe: How To Render HTML In ASP:DataGrid Pin
Imran Khan Pathan17-Aug-07 4:00
Imran Khan Pathan17-Aug-07 4:00 
AnswerRe: How To Render HTML In ASP:DataGrid Pin
Sassan Komeili Zadeh17-Aug-07 4:07
Sassan Komeili Zadeh17-Aug-07 4:07 
GeneralRe: How To Render HTML In ASP:DataGrid Pin
Imran Khan Pathan17-Aug-07 4:14
Imran Khan Pathan17-Aug-07 4:14 
QuestionTextbox validation using javascript..., Pin
Member 387988117-Aug-07 2:50
Member 387988117-Aug-07 2:50 
AnswerRe: Textbox validation using javascript..., Pin
Talal Sultan17-Aug-07 3:00
Talal Sultan17-Aug-07 3:00 
Questionopen rediffmailpro directly thr my site Pin
deepaksringr17-Aug-07 2:48
deepaksringr17-Aug-07 2:48 
AnswerRe: open rediffmailpro directly thr my site Pin
N a r e s h P a t e l17-Aug-07 3:49
N a r e s h P a t e l17-Aug-07 3:49 
QuestionBrowser compatibility Error ( Mr.Michael) Pin
nandhububbly17-Aug-07 2:47
nandhububbly17-Aug-07 2:47 
AnswerRe: Browser compatibility Error ( Mr.Michael) Pin
nandhububbly17-Aug-07 2:47
nandhububbly17-Aug-07 2:47 
QuestionSystem.IO.MemoryStream Issue , Help needed urgently Pin
percyvimal17-Aug-07 1:56
percyvimal17-Aug-07 1:56 
QuestionHow to use Edit and update in DataList??? Pin
bijeshputhalath17-Aug-07 1:49
bijeshputhalath17-Aug-07 1:49 
AnswerRe: How to use Edit and update in DataList??? Pin
Michael Sync17-Aug-07 2:38
Michael Sync17-Aug-07 2:38 
GeneralRe: How to use Edit and update in DataList??? Pin
bijeshputhalath17-Aug-07 5:50
bijeshputhalath17-Aug-07 5:50 
GeneralRe: How to use Edit and update in DataList??? Pin
Michael Sync17-Aug-07 16:37
Michael Sync17-Aug-07 16:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.