Tag: Development

Community

File Uploading in ASP.NET 2.0

(Ziran Sun) With the inclusion of the FileUpload control in ASP.NET 2.0, Microsoft has finally given us a WebControl to handle file uploading. In this article we’ll examine the new FileUpload control and show just how easy it is to build an ASP.NET Web Form that accepts user uploads.

Community

The State of Things

(Peter Aitken) The fundamental technologies of the Web, HTTP and HTML, are by their very nature stateless. In other words, they do not provide a way to keep track of information between page views. Of course, many of the things we do on the Web require that state information be maintained in some wa

Community

VB.Net Yield Return Iterator

(Matthew Cochran) One interesting new feature of the VB.Net is the “yield” keyword. Basically it is used to iterate through objects returned by a method. It creates a state engine in IL so you can create methods that retain their state and dont have to go through the pain of maintaining state in yo