D
DaveF
Is there any way to to build javascrip on the client and place it exactly
where I want it in the html?
where I want it in the html?
bruce barker said:RegisterClientScriptBlock: places the script right after the <form>
RegisterStartupScript: places the script before </form> (after all controls)
to place it anywhere else, use a placeholder control, say
<head runat=server id=header>
</head>
then using the generic control, add script:
HtmlGenericControl sc = new HtmlGenericControl("script");
sc.InnerHtml = javascriptCode;
header.Controls.Add(sc);
-- bruce (sqlwork.com)
DaveF said:Thanks for the ideas. Basically I am trying to build a Tree structure with
multiple branches. It has LOTS of data. It is a skills matrix. I am woried
about it being slow. What is the best practice to code this. It almost seems
like old asp do while would be faster?
--
David Fetrow
Helixpoint LLC.
http://www.helixpoint.com
(e-mail address removed)