Calendar
<<  January 2009  >>
MoTuWeThFrSaSu
2930311234
567891011
12131415161718
19202122232425
2627282930311
2345678
Blogroll
    Here are the basics as an immediate reminder, I need to finish writing the rest - for full msdn doc see http://msdn.microsoft.com/en-us/library/dz32563a.aspx   <configuration> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <depend... [More]

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5
    When you add a reference to a project in Visual Studio there are several tabs to allow you to "quickly" pick an assembly to reference. The .net tab is the first and, at first glance, appears to show all assemblies registered in the Global Assmbly Cache (GAC). It is, however, not associat... [More]

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5
    I have on occasion needed to schedule a process to run on a nightly basis, but I did not have access to the server where I could schedule a windows service. So I had to turn to using a timer object in ASP.NET to schedule the process for me. I used the application_start method (in the global.asax)... [More]

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5
    Often when you need to call a function to save a file to disk or to a database you are required to pass a .NET stream to the function but all you have is a byte array. In pre-.NET days you had to move streams bit by bit by using byte arrays. You had to manage the whole process. Fortunately that is n... [More]

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5
    At first glance it appears that adding a control to a form dynamically is quite simple. In fact it is. It's when you need to be able to persist that control on multiple post-backs where you start running into problems. This article describes how the ASP.NET engine handles VIEWSTATE and POSTBACKS and how that affects dynamically added controls. [More]

    Currently rated 4.0 by 4 people

    • Currently 4/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5