J Josh Apr 19, 2005 #1 Note the space just in front of ".Add" HttpContext.Current.Session .Add("PeriodSelectedOnTripSummary",value);
Note the space just in front of ".Add" HttpContext.Current.Session .Add("PeriodSelectedOnTripSummary",value);
W William F. Robertson, Jr. Apr 19, 2005 #3 Since this is C#, it is much more forgiving about syntax. White spaces are typically ignored by the compiler. The only "rule" is you must have a ';' at the end of every command. if(true){Console.Write("hello");Console.WriteLine("world.");} I would never recommend the above code, but spaces are merely used to separate tokens, such as variables names, types, etc. bill
Since this is C#, it is much more forgiving about syntax. White spaces are typically ignored by the compiler. The only "rule" is you must have a ';' at the end of every command. if(true){Console.Write("hello");Console.WriteLine("world.");} I would never recommend the above code, but spaces are merely used to separate tokens, such as variables names, types, etc. bill