Next Wednesday (September 12th) will be our first post-summer meeting. 6:00 pm: smooze and pizza. 6:30 pm: presentation. We will be meeting at the Health...
A few of us here at work have been discussing whether to store commonly used information about a user in either ViewState (possibly Session) or pull it from...
I'm a big fan of Xml Serialization. I believe that the less database interaction, the better. Use xml serialization to create an xml file from an object and...
For our larger intranet applications we tend to use session to store user/app state information. It's very convenient when you need to manage a multi-step...
Here's something quick and dirty that I just put together. It will show you Xml Serial/Deserializaton in it's most basic form. Personally I use an OR/M that...
Will, Your post got me going off on a tangent.... You wrote "Remember that you can't serialize readonly properties." I haven't done a lot of work with...
... As did I ! I do admit that the example I provided is basic at best. If you just want to store some values in some file on a server that can be treated as...
I use the Cache object in my business layer as I am querying database information. By doing this, I do not need to worry about whether the data is coming...
If I remember correctly, one time I serialized objects, using the binary formatter, and Base-64 encoded it for storage in a database. I'll have to dig it up....
This is not an answer but something to think about. When using viewstate the amount of resources it uses and how it affects the end user should be a primary...
Just a quick reminder: tomorrow (Wednesday) is our monthly evening event. Pizza at 6:00 pm. Talk at about 6:30. Hope to see you there! Remember, we meet at St...
A quick follow up on last night's discussion. All of the sample controls that I showed used ViewState to store property values rather than using a private...
After seeing how easy it is to extend controls / create your own during Andrew's presentation I started thinking of all the aspects of coding that seemed very...
I have updated the web site and we now have a calendar that runs through February of 2008 with lots of interesting speakers lined up. This Friday is our...
I have a data historian I'm trying to communicate with. The historian has a utility which unpacks its data and presents it as comma delimited text. To set up...
A quick reminder: Today (Friday) is our monthly lunch. Cicchitti's Pizza. 1427 Railroad Ave. They have a small salad bar and you can buy pizza by the slice....
Scott Hanselman has more info about Microsoft's plans in one of his podcasts. http://www.hanselman.com/blog/HanselminutesPodcast83MicrosoftToReleaseNE\ ...
FYI for anyone who might be interested... (see the message below mine) Here's some basic info links for the software for your convenience * ...
David Crook
Dave.Crook@...
Oct 4, 2007 4:22 pm
720
FYI for anyone who might be interested... (see the message below mine) Here's some basic info links for the software for your convenience * ...
David Crook
Dave.Crook@...
Oct 4, 2007 4:22 pm
721
Just a quick reminder. Our Wednesday meeting will feature Phil Hustead. Phil will be presenting on the Microsoft Membership Provider. Pizza at 6:00 pm. The...
Hello all, We spoke briefly about the viewstate growing to an enormous size last night at our meeting. When the viewstate is too large it starts returning an...
Just a little code snippet for general reference, and a question. The context: 1) I use a lot validation controls with AJAX extenders to dynamically display...