Jump to content
Xtreme .Net Talk

mhildner

Avatar/Signature
  • Posts

    29
  • Joined

  • Last visited

Everything posted by mhildner

  1. While VS 2003 provides an easy way to retrieve config file settings (ConfigurationSettings), it currently gives us no way to write back to the .config file. Too bad, maybe in 2005? Some people have written their own stuff to write to config files, here's one example. FWIW, I've started to get away from a single config file for the application, because many users may be using the same machine and want different settings. So what I've done is make an object that holds all the settings, then serialize/desialize to xml. So the application will use the .config for the particular user.
  2. I recently read this in this article. Can anyone shed some light on why parameterized queries are not subject to Sql injection? Thanks, Mike
  3. Have you looked at forms authentication? This is one place to start.
  4. If you've already run your app by pressing F5, the executable is in a folder under your solution - look in bin\debug (or bin\release). Good practice is to compile for release before you distribute. You can create a setup project, which is nice and professional, but you don't have to. You can just copy over what's in the ...\release folder (your .exe and any .dll files you may be referencing) on to your manager's machine. He will have to have the .NET framework installed, of course.
×
×
  • Create New...