Templates & Master Pages

  • Thread starter Thread starter Jorge Luzarraga
  • Start date Start date
J

Jorge Luzarraga

Hello,

I´d like to know if some of you guys have ever implemented a form item
template that may be one for searching (with some criteria a seek button and
a grid for showing results) inside a Master Page. I´ve tried to do it but
since I´ve got absolute positioning for my control inside the template once
I use the master page my template´s controls get mixed with the master page
and don´t respect the original layout.

How can I use a Item Template inside a Master Page? Is it only an issue with
the absolute positioning inside my template?


TIA,

Jorge
 
Isolate by using a Panel control as a container for your grid. The Panel
renders as a <div> and you can apply whatever CssClass attribute you want to
the Panel at run-time by changing its properties programmatically. Then you
can use whatever CSS class you need whenever your application needs to do
so.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/
 
Back
Top