I have a page which essentially opens a files, reads it and writes into a DB. It doesn't require any UI and its all written in a code behind in VB. Is it therefore possible to make this into an executable instead of webpage?<BR><BR>Thanks!I have a page which essentially opens a files, reads it and writes into a DB. It doesn't require any UI and its all written in a code behind in VB. Is it therefore possible to make this into an executable instead of webpage?<BR><BR>Yep. Are you using Visual Studio .NET? If so, create a new Console Application. Essentially it will create a Main function - this function is called whenever the executable is run. You should be able to cut and paste in your functions that read the file and writes it to the DB. Best of luck!