Web Forms :: Store A Document In A Database?
Jul 21, 2010I am using ASP.NET 3.5 and SQL SERVER 2008. How can I store a document in sql server after I attach the document to a form in ASP.NET 3.5.
View 3 RepliesI am using ASP.NET 3.5 and SQL SERVER 2008. How can I store a document in sql server after I attach the document to a form in ASP.NET 3.5.
View 3 RepliesIs it a good idea to create a document managament system that stores all kinds of documents inside sql server database. This will have infrastructure to accomodate all kinds of applicartions..
View 2 Repliesiam using asp.net with c# with back end as sql server 2000 i want to store and retreive ms word document 2003 or 2007 using asp.net with c#...
View 1 RepliesHow To Store Word Document in Sql Server
View 3 RepliesIts related to datatable in gridview store in session and then session retrive and store to database. basically i am using gridview here creating new row for button click and these row adding untill user's last entry then submit all these entry to database. so i want to use session variable to store this data temporarily and after final entry user click on submit button and all data shold be save in db.
View 9 Replieshow can i store youtube or any other video URL or link in database and retrive from database
and what control i use in this in C sharp
Is it better to store images directly in a database or to just store the name of the file in the db and display that file? I would think that just storing the filename of the image would keep the db size low...
View 1 RepliesWeb service error response (code/message etc) would you store it in a database? or would you keep the error response in a method.By the time I'm done with this, there will be hundreds of error response, maybe in the future, thousands? (I dont know yet, depends how large this web service grows).EDIT: error response is the response returned back to the application via the web service, (not to be confused with error logging).
View 1 RepliesBelow is the code I use to store file into database but there are a few problems.
1. couldn't store file larger than 4mb
2. couldn't store doc,docx,xlsx but only .txt
my table column are:
[code]....
I am working with one project like software corner !in which i upload my all software and end-user can download that software but my problem is how i store my software's(>25MB.exe files) in database ...
(I use sql server 2012) ...
I need to upload book , document and file, that must be stored in a database table. For this I need code.
View 3 RepliesI want when user upload a doc file it convert into pdf. How can i do this. I read that itextsharp convert it.
View 1 RepliesIf I select the today date
Then I want store 4days later date in the database
Is there a way to have a page editing tool such as the one on here here you can make text bold, italics, numbering etc on my own site and store the content in a database?
I want the user to be able to edit the text on the page and formatting then submit it and recall it as static text when the user is not logged in....
I am creating a video database .. User will upload his video.. I know the path will be store in database and video on hard disk .. How video will upload, path are set, and if possible video is downloaded.. I am not creating online streaming .. Just upload and download ..
View 1 Replieshow to store video file in database and which control to display the video..
View 1 Repliesi am already uploading some videos from sql server database.
Now, i want to display these videos from gridview using like query..
when i clicking the view button the videos are visible to gridview based on select query...
I want store the selected values of checkbox list in database, the checkbocx list is biding to datasource (means i don't know how values there are exactly) ... How can I store the values in one column or different columns knowing that I don't know how values there are ??
View 1 RepliesI want to to encrypt password show me the query for encryption password
View 1 Repliesi have a web page in asp.net.vb code and sql database.
the persons number is called PNUMB and i have stored all photos of persons in a folder with the persons number (PNUMB) as their file name. when i search for a PNUMB i want to display the photo of the persons whose dtata is displayed. how i sit possible
How to create dynamically html and store into database as path and html file in folder.
View 1 Replieshow to store the 'multiple check box ' record in a database in a single column .. example like "hobbies" for this we have to select multiple check boxes
View 1 RepliesI am launching a pdf document using either:
1. Response.Redirect("filepath/document.pdf"), or
2. Response.ContentType = "Application/pdf"
Response.WriteFile("filepath/document.pdf")
Response.End()
Both methods successfuly launch the PDF document displaying the document path and title in the title bar. For security reasons I'd like to HIDE the document title. Can someone advice how this can be done? (How can a PDF document be launched without showing the actual document's name)
Basically I have a asp.net that I need to display an XML document (straight xml, with the tree nodes) I have the sql statement which returns the row names and each one of their values. Just wondering how I should go about doing this?
SQL Server 2008, my query is just a select * from offices, my results is "1","New York","New York City","555-5555" I would like the output to be
<item id="1">
<state>New York</state>
<city>New York City</city>
<phone>555-5555</phone>
</item>
where state/city/phone is the column name, and the value is the value of that column
I'm developing an ASP.NET application with Visual Studio 2008 SP1 and C#. I'm also using Sql Server 2008 SP1.I'm trying to add the tables created with the command aspnet_regsql -S (local) -E -A m to my own database.
If I run that command it will create a database (Aspnetdb database) with four tables. I want to know if there is a command that creates those tables in my own database (called myDatabase, for example).And, when the tables are created. How can I connect authentication to myDatabase?