Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / July 2007

Tip: Looking for answers? Try searching our database.

ClientScript.RegisterStartupScript problem

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
HockeyFan - 20 Jul 2007 15:20 GMT
My function to get an alert box on the page isn't working.
Instead it puts in the bottom section of the page:
<script type="text/javascript">
<!--
This is a test// -->
</script>

The function is:
       public static void MessageAlert_Create(ref System.Web.UI.Page
thePage,
                                               Type thisType,
                                               string strMessage,
                                               string strKey)
       {
           System.Web.UI.ClientScriptManager ClientScript =
thePage.ClientScript;
           string strScript = "alert('" + strMessage + "');";
           if (!ClientScript.IsStartupScriptRegistered(thisType,
strKey))
           {
               ClientScript.RegisterStartupScript(thisType, strKey,
strMessage, true);
           }
       }

and I call this function as follows:
               System.Web.UI.Page pg = this;
               Bus.UtilStatic.MessageAlert_Create(ref pg,
this.GetType(), "This is a test", "Tester");

any ideas how to get the alert box to show up?
George Ter-Saakov - 20 Jul 2007 15:30 GMT
Well change
ClientScript.RegisterStartupScript(thisType, strKey, strMessage, true);

to
ClientScript.RegisterStartupScript(thisType, strKey, strScript , true);

notice the difference.
strScript instead of strMessage in your code.

George.

> My function to get an alert box on the page isn't working.
> Instead it puts in the bottom section of the page:
[quoted text clipped - 27 lines]
>
> any ideas how to get the alert box to show up?

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.