ASP.NET Podcast Show #23 - Spang, Summit Round Up, Intro to Atlas, Oh My!

Subscribe  - It makes life easier.  Get a copy of iPodder or iTunes.

Download.

Show Notes:

  • Spang.
    • What Spang Truly is.
    • Dave Sussman's Reaction to the Spang announcement. Dave: "I can't get enough Spang!".
    • The Joke takes root and grows exponentially.
  • The Channel9 Reaction.
  • Atlas code.
    • Server side Web Code:
      [WebMethod]
      public string HelloWorld(string strInput)
      {
      return "Hello " + strInput + " Server Time: " + DateTime.Now.ToString() ;
      }
    • Client Side Javascript:
      <script type="text/xml-script">
      function
      OnClickTest() {
      var txtInputBox = document.getElementById("txtInput");
      Samples.AspNet.WebServiceTest.HelloWorld(txtInputBox.value, HelloWorldCallBack);
      }
      function HelloWorldCallBack(result){
      alert("Returned Value: " + result);
      }
      </script>

Sorry for the delay, but I have not been feeling well since I got back.

3 Comments

Comments have been disabled for this content.