|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Help with inline code?on the localhost, which will increment the counter. I want the counter to work only when the page is on the web server. I have the long string below which is not fitting into the Response.Write() method as one string. <script language="C#" runat="server"> private void showCounter() { Response.Write(@" <!-- Start of Code --> <script type="text/javascript" language="javascript"> var sc_project=1000; var sc_invisible=1; var sc_partition=10; var sc_security="7708ea54"; </script> <script type="text/javascript" language="javascript" src="http://www.abc.com/counter/counter.js"></script> <noscript> <a href="http://www.abc.com/" target="_blank"><img src="http://c11.abc.com/counter.php?sc_project=1000&java=0&security=7708ea54&invisible=1" alt="free statistics" border="0"></a> </noscript> <!-- End of Code --> "); } </script> How should I be doing this? Thanks, Brett Not sure what you are trying to achieve. aere you trying to make a page
counter to judge how many hits your site gets? If so why not make a statistics table in your db and increment a value in there everytime a appstart event is called? Then read this back when you need to display your counter? -- Show quoteHide quoteDan "brett" <acco***@cygen.com> wrote in message news:1136530552.139206.171060@o13g2000cwo.googlegroups.com... > I'd like to use a conditional that checks the URL to make sure I'm not > on the localhost, which will increment the counter. I want the counter > to work only when the page is on the web server. I have the long > string below which is not fitting into the Response.Write() method as > one string. > > > <script language="C#" runat="server"> > private void showCounter() > { > Response.Write(@" > <!-- Start of Code --> > <script type="text/javascript" language="javascript"> > var sc_project=1000; > var sc_invisible=1; > var sc_partition=10; > var sc_security="7708ea54"; > > </script> > <script type="text/javascript" language="javascript" > src="http://www.abc.com/counter/counter.js"></script> > <noscript> > <a href="http://www.abc.com/" target="_blank"><img > src="http://c11.abc.com/counter.php?sc_project=1000&java=0&security=7708ea54&invisible=1" > alt="free statistics" border="0"></a> > </noscript> > <!-- End of Code --> > "); > } > </script> > > > How should I be doing this? > > Thanks, > Brett >
Other interesting topics
when debugging long delay before hitting breakpoint in page load
Calendar Control 2.0 Custom Membership Provider! Don't show page in browser history asp.net 2.0 caching GridView and XML problems ASP.net 2.0 GridView edit mode problems New to ASP.NET 2.0 ASP.NET process identity does not have read permissions to the global assembly cache What is ASPNETDB.MDF used for? |
|||||||||||||||||||||||