Ask a Question related to ASP.NET General, Design and Development.
-
Clive #1
Dymanically rendering html to an aspx form
Hi,
I generate a serious of hidden fields that have Database
IDENTITY values as their value.
This HTML is contained in a String.
On my ASPX Page I then do a <%=strHTML%> in order to
write them out.
I know that this is not the correct way of doing this as
teh <%%> are only for backward compatability.
Any ideas? Maybe use a placeholder and parse the html out
to a placehodler.
Any replies/help/direction is much appreciated.
Thanks,
Clive.
Clive Guest
-
ScrollPane, HTML Rendering with CSS
Alright, so I am loading an swf into the scrollpane with a dynamic textfield as the only content. I am then setting the textfield to render html... -
HTML table on aspx web form
Hi, I want to put a HTML table on aspx webform so that i can place my header, menu, footer user controls appropriately. I got 3 user controls... -
[Q] HTML rendering?
Hello, Does anyone know if any of the current, cross-platform, GUI toolkits of Ruby has an HTML rendering widget? Cheers, -- Daniel Carrera... -
How to refrence html objec t from aspx form
Add a runat="server" and id attribute to it. It also needs a CodeBehind reference. If you are using VS.Net, you can right-click it in the Designer,... -
How can I refrence html object from aspx form.
I have created checkbox in the aspx form (html) not the design. Syntax:<input type =checkbox name ="mycheckbox"> now how can I read i's... -
Ravikanth[MVP] #2
Dymanically rendering html to an aspx form
Hi
Use Literal Control.
Ravikanth
out>-----Original Message-----
>Hi,
>
>I generate a serious of hidden fields that have Database
>IDENTITY values as their value.
>
>This HTML is contained in a String.
>
>On my ASPX Page I then do a <%=strHTML%> in order to
>write them out.
>
>I know that this is not the correct way of doing this as
>teh <%%> are only for backward compatability.
>
>
>Any ideas? Maybe use a placeholder and parse the html>to a placehodler.
>
>Any replies/help/direction is much appreciated.
>
>Thanks,
>Clive.
>.
>Ravikanth[MVP] Guest
-
John Saunders #3
Re: Dymanically rendering html to an aspx form
"Clive" <clive@nospam.com> wrote in message
news:002b01c35e23$4e21cc50$a001280a@phx.gbl...And what happens next? You render this HTML ... and then what happens? This> Hi,
>
> I generate a serious of hidden fields that have Database
> IDENTITY values as their value.
will determine the "best" way to do this in ASP.NET.
--
John Saunders
Internet Engineer
[email]john.saunders@surfcontrol.com[/email]
John Saunders Guest
-
Jerry III #4
Re: Dymanically rendering html to an aspx form
Label generates <span> element. To output just the text use literal control.
Jerry
"Matt" <metal@rocks.com> wrote in message
news:s5u9jvgipip2o490um4rtmrfk26mbdmc9i@4ax.com...> A simple label! In the On_Load event, just do MyLabel.Text = strHTML
>
>
> On Fri, 8 Aug 2003 20:07:02 -0700, "Clive" <clive@nospam.com> wrote:
>>> >Hi,
> >
> >I generate a serious of hidden fields that have Database
> >IDENTITY values as their value.
> >
> >This HTML is contained in a String.
> >
> >On my ASPX Page I then do a <%=strHTML%> in order to
> >write them out.
> >
> >I know that this is not the correct way of doing this as
> >teh <%%> are only for backward compatability.
> >
> >
> >Any ideas? Maybe use a placeholder and parse the html out
> >to a placehodler.
> >
> >Any replies/help/direction is much appreciated.
> >
> >Thanks,
> >Clive.
Jerry III Guest



Reply With Quote

