mirroring control...?

mirroring control...?

am 18.01.2008 21:30:25 von laziers

Hi,

I have written [paging navigator] as a web user control.
Everything works well, but I must set this navigator to top and buttom
of the repeater.

like this: http://laziers.googlepages.com/repeater.png

ok, but I dont want to set 2 the same controls to page, synchronize
them etc.

Is there any method to hmm... copy? genarated html from first control
and paste it
to the buttom? or any idee to avoid the pasting 2 similar controls?

bye

Re: mirroring control...?

am 19.01.2008 17:55:11 von NoSpamMgbworld

As they are separate controls, you will always have to sync them. There is
nothing wrong with having two of the same user control on a page and syncing
the controls when the postback occurs. If you are using AJAX, it is a bit
trickier, of course and I would write the sync in JavaScript first, outside
of any control, to make sure you have the logic correct.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box!
|
*************************************************
wrote in message
news:a5170277-485d-411f-946d-39782ddc8ab4@f10g2000hsf.google groups.com...
> Hi,
>
> I have written [paging navigator] as a web user control.
> Everything works well, but I must set this navigator to top and buttom
> of the repeater.
>
> like this: http://laziers.googlepages.com/repeater.png
>
> ok, but I dont want to set 2 the same controls to page, synchronize
> them etc.
>
> Is there any method to hmm... copy? genarated html from first control
> and paste it
> to the buttom? or any idee to avoid the pasting 2 similar controls?
>
> bye

Re: mirroring control...?

am 19.01.2008 19:47:05 von laziers

thx for replay :)