• Get help from David Sheardown!

How about storing files online? free storage options

 
** 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 [...]

C#: how to create/call Javascript from within ASP.NET

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 [...]