The Wagner Blog
Development Notes, News and Trivia









Subscribe to "The Wagner Blog" in Radio UserLand.

Click to see the XML version of this web page.

Click here to send an email to the editor of this weblog.
 

 

Monday, March 10, 2003
 

CNN - EDS sends work down under.

In a move that highlights the flight of U.S. information technology work overseas, Electronic Data Systems is adding 360 jobs to its operations in New Zealand. read more

Good thing I have two degrees to fall back on that have nothing to do with IT - but also don't pay squat.


7:13:25 PM    

Roogle

The search engine soon to change its name. This looks cool. Search 9000 RSS feeds in one shot. What a linkfest must be going on for this page!


7:05:22 PM    

There's a new article up over on MSDN under the XML Web Services section entitled Understanding SOAP. The author is none other than DevelopMentor XML guru Aarron Skonnard. In the article, Aarron covers SOAP from a pure XML protocol perspective; no specific client/server implementation is discussed. Next to only the specification itself, this is the best piece of reading anyone looking to learn the protocol should check out. [ Drew Marsh]


7:01:24 PM    

Some bits of code:

Sometimes little bits can come in very handy. Here are a couple.

C# version of IsNumeric( ) :

public static bool IsNumeric(object value)
{
   try
   {
      int i = Convert.ToInt32(value.ToString());
      return true;
   }
      catch (FormatException)
   {
      return false;
   }
}

There are times when you do not want a postback to occur for a control on your ASP.NET page. This example shows how javascript can be used to process the event and suppress the postback. Returning false from javascript for a method on a control will prevent ASP.NET from processing the postpack. This example will redirect the client to a new page without first making a postback to the server. The code is placed in the Page_Load method of the ASP.NET Page:

ImageButton1.Attributes.Add("onclick", _
   "top.location.href=''" & _
   ";return false;")
 


6:54:28 PM    


Click here to visit the Radio UserLand website. © Copyright 2004 Thomas Wagner.
Last update: 5/2/2004; 4:46:03 PM.
This theme is based on the SoundWaves (blue) Manila theme.
March 2003
Sun Mon Tue Wed Thu Fri Sat
            1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31          
Jan   Apr