Where to set video files
-
Hi Guys, I want to show some video files in my webpage. my question is where is the better place to save those files??? in the database(im using sql server 2005) or in a directory on the webserver??? maybe some references of how to do that?
-
Hi Guys, I want to show some video files in my webpage. my question is where is the better place to save those files??? in the database(im using sql server 2005) or in a directory on the webserver??? maybe some references of how to do that?
Must be on Server in some folder in your portal because video files are very heavy and the will kill your application by slowing down it if u bring it from database. store them in some folder on server itself and save path like "\videos\comedy\" and "\videos\sports\" in database simple varchar field. that will be more faster
Anand Desai Developer Atharva Infotech
-
Must be on Server in some folder in your portal because video files are very heavy and the will kill your application by slowing down it if u bring it from database. store them in some folder on server itself and save path like "\videos\comedy\" and "\videos\sports\" in database simple varchar field. that will be more faster
Anand Desai Developer Atharva Infotech
-
Must be on Server in some folder in your portal because video files are very heavy and the will kill your application by slowing down it if u bring it from database. store them in some folder on server itself and save path like "\videos\comedy\" and "\videos\sports\" in database simple varchar field. that will be more faster
Anand Desai Developer Atharva Infotech
Hi Anand, Thanx a lot for your advice. Do you know maybe any references/links that i can learn more about how to do that??