Posted on June 24, 2008 by dsheardown
** UPDATED **Just added some notes from testing over the last week…
Well, I know there are quite a few online storage vendors out there. One of the biggest impacts perhaps has been Amazon (yes the book people!). Amazon introduced something called Amazon S3 which is part of their AWS (Amazon Web Services) range. Don’t worry [...]
Filed under: Uncategorized | Leave a Comment »
Posted on June 24, 2008 by dsheardown
A nice and easy way to show how you can dynamically create and/or call Javascript from ASP.NET (using C#/Csharp). Of course VB.NET would be very similar I guess!
item
code
1
string sJSexe = “<script>alert(‘hello world’);</script>”;
2
Type t = this.GetType();
3
if (!ClientScript.IsClientScriptBlockRegistered(t, “PopupScript”)){ ClientScript.RegisterClientScriptBlock(t, “PopupScript”, sJSexe);}
So let’s have a quick look at what the code does:
Item 1
Creates the Javascript string [...]
Filed under: Uncategorized | Leave a Comment »