Ask a Question related to ASP.NET General, Design and Development.
-
Cris Curtis #1
<embed> referenced page called 2 times
When I use an embed tag that uses a dynamic aspx page, the dynamic aspx page
appears to get called 2 times instead.
Below is code that adds an embed tag to a placeholder control that will use
a second aspx page to generate the svg for the embed.
svgchart.Controls.Clear();
string strSRC = "./DesktopModules/Enterprise/BusinessRuleSVG.aspx";
string HTML = "<EMBED SRC='" + strSRC + "' NAME='SVGEmbed' HEIGHT='450'
WIDTH='900' TYPE='image/svg+xml'
PLUGINSPAGE='http://www.adobe.com/svg/viewer/install/'>";
svgchart.Controls.Add(new LiteralControl(HTML));
The BusinessRuleSVG page will then get called 2 times instead of the
expected 1 time. Has anyone else experienced a problem such as this? I
have seen examples of users generating dynamic graphic files using the embed
tag, but not SVG files.
Any assistance is appreciated.
Thanks,
Cris
Cris Curtis Guest
-
Event handlers called multiple times
My DataGrid's event handlers looks like: Grid_ItemDataBound(...) { switch (e.Item.ItemType): { case ListItemType.Footer: ...// BREAKPONT... -
Problem with OnItemCreated and InitializePager being called four times
Hello, I'm hoping someone here can shed some light on this problem or suggest alternate approaches. I'm creating a custom datagrid by... -
Count the no of times a script is called
I have a fortran program calling a perl script for various parsing activities for multiple number of times. I wish to increment a variable by 1 in... -
OnItemCreated and OnItemDataBound called too many times?
Has anyone run into the problem where OnItemCreated and/or OnItemDataBound is called twice as many times as necessary? If I have a grid with 4... -
COM dll being called multiple times
> This issue I am seeing is the same information being How are you using the DLL from the asp code? -
Swanand Mokashi #2
Re: <embed> referenced page called 2 times
set AutoEventWireup="false" in the Page directive
eg
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="YourPage.aspx.vb"
Inherits="YourApp.PageClassName" %>
HTH
--
Swanand Mokashi
Microsoft Certified Professional
[url]http://www.swanandmokashi.com/[/url]
Home of the Stock Quotes, Quote of the day and Horoscope web service
"Cris Curtis" <chrisc@grsnet.com> wrote in message
news:ufE%23YgsUDHA.2224@TK2MSFTNGP10.phx.gbl...page> When I use an embed tag that uses a dynamic aspx page, the dynamic aspxuse> appears to get called 2 times instead.
>
>
> Below is code that adds an embed tag to a placeholder control that willembed> a second aspx page to generate the svg for the embed.
>
>
> svgchart.Controls.Clear();
> string strSRC = "./DesktopModules/Enterprise/BusinessRuleSVG.aspx";
> string HTML = "<EMBED SRC='" + strSRC + "' NAME='SVGEmbed' HEIGHT='450'
> WIDTH='900' TYPE='image/svg+xml'
> PLUGINSPAGE='http://www.adobe.com/svg/viewer/install/'>";
> svgchart.Controls.Add(new LiteralControl(HTML));
>
> The BusinessRuleSVG page will then get called 2 times instead of the
> expected 1 time. Has anyone else experienced a problem such as this? I
> have seen examples of users generating dynamic graphic files using the> tag, but not SVG files.
>
> Any assistance is appreciated.
>
> Thanks,
> Cris
>
>
Swanand Mokashi Guest
-
Cris Curtis #3
Re: <embed> referenced page called 2 times
Thanks,
I did have AutoEventWireup = "False" but that got me looking at my other
page directives and found that I had set SmartNavigation="true" on the
parent page
which will of course make the embed call 2 times. My code is in a child
control and it would have taken me a long time without the tip to start
looking at the page directives.
Thanks again,
Cris
"Swanand Mokashi" <swanand@swanandmokashi.com> wrote in message
news:%23%23KqButUDHA.1744@TK2MSFTNGP12.phx.gbl...Codebehind="YourPage.aspx.vb"> set AutoEventWireup="false" in the Page directive
> eg
> <%@ Page Language="vb" AutoEventWireup="false"> Inherits="YourApp.PageClassName" %>
>
> HTH
> --
> Swanand Mokashi
> Microsoft Certified Professional
> [url]http://www.swanandmokashi.com/[/url]
> Home of the Stock Quotes, Quote of the day and Horoscope web service
> "Cris Curtis" <chrisc@grsnet.com> wrote in message
> news:ufE%23YgsUDHA.2224@TK2MSFTNGP10.phx.gbl...> page> > When I use an embed tag that uses a dynamic aspx page, the dynamic aspx> use> > appears to get called 2 times instead.
> >
> >
> > Below is code that adds an embed tag to a placeholder control that will> embed> > a second aspx page to generate the svg for the embed.
> >
> >
> > svgchart.Controls.Clear();
> > string strSRC = "./DesktopModules/Enterprise/BusinessRuleSVG.aspx";
> > string HTML = "<EMBED SRC='" + strSRC + "' NAME='SVGEmbed' HEIGHT='450'
> > WIDTH='900' TYPE='image/svg+xml'
> > PLUGINSPAGE='http://www.adobe.com/svg/viewer/install/'>";
> > svgchart.Controls.Add(new LiteralControl(HTML));
> >
> > The BusinessRuleSVG page will then get called 2 times instead of the
> > expected 1 time. Has anyone else experienced a problem such as this? I
> > have seen examples of users generating dynamic graphic files using the>> > tag, but not SVG files.
> >
> > Any assistance is appreciated.
> >
> > Thanks,
> > Cris
> >
> >
>
Cris Curtis Guest



Reply With Quote

