Search results

  1. B

    Writing To config File

    I am having a problem with an ASP.NET app I am writing. I need to find a way to store multiple, dynamic connection strings to a database. These need to be updatable via a web interface (in a protected admin page). I initially tried having one main connection string in the web.config as usual...
  2. B

    Binary File Reads Code Optimization

    Hi! Thanks for the reply. I have had a look at the BinaryFormatter class- is this what you mean? As far as I can see, it it has one deserialize method to which you pass a filestream object. However, I cannot deserialize the whole file without using some kind of buffer because the file is...
  3. B

    Binary File Reads Code Optimization

    Binary File Reading Code Optimization Hi guys, I am having a problem with my binary file reading, and wonder if anybody knows a better way to achieve what I am getting at. I am trying to read in a binary database file record by record. Each record is split into fields, and each record contains...
  4. B

    MsgBox For I.E and Mozilla Browsers

    You might be better off disabling the ShowMessageBox property, writing a javascript function that mirrors your server validation code, and then adding it to the button onClick using: button1.Attributes.Add("onClick", "return yourjavascriptfunction();") Then return false or true from the...
Back
Top