Ask a Question related to ASP.NET General, Design and Development.
-
brw #1
dynamically adding a <LINK> tag to an asp.net page
Is there a way to dynamically add a link tag to the head block of an
..aspx page? I'm aware that you can add a link tag (or literal
control) statically and then dynamically modify the attributes.
I'm wondering if there's a way to add the tag from scratch at run
time.
thanks,
Ben
brw Guest
-
Dynamically adding DSN?
I need to add DSN's to CF server on the fly when a user signs up for my billing software. I've searched around google and can't find anything that... -
Dynamically adding a user control to aspx page
I am using an aspx page called USProfile.aspx. It has a placeholder control. A user control called USData is added to placeholder control... -
Adding dynamically user control (ASCX) into asp.net page and handling OnClick event
Hi, I've been reading a lot's of Q&A on user controls but none seem to answer my question. Here it is. I need to add dynamically a user control,... -
Dynamically adding controls to page SOURCE file
Hi, I have a class, derived from "Control" which I can include on a page using: <tag:MyControl attr1=value></tag:MyControl> My questions are:... -
Dynamically adding custom controls to page source file
Hi, I have a class, derived from "Control" which I can include on a page using: <tag:MyControl attr1=value></tag:MyControl> My questions are:... -
Jerry III #2
Re: dynamically adding a <LINK> tag to an asp.net page
Response.Write is what you need. Or you can use repeater control, it won't
render anything if it's empty and will allow you to insert more than one
link.
Jerry
"brw" <brw_nospam@yahoo.com> wrote in message
news:574d09b5.0308110934.1ed66c18@posting.google.c om...> Is there a way to dynamically add a link tag to the head block of an
> .aspx page? I'm aware that you can add a link tag (or literal
> control) statically and then dynamically modify the attributes.
>
> I'm wondering if there's a way to add the tag from scratch at run
> time.
>
> thanks,
> Ben
Jerry III Guest



Reply With Quote

