Binding Gridview
-
How to Bind Word Document from the sql to Gridview using Asp.net
SAKTHIVEL P Sans Pareil IT Services Pvt Ltd Chennai
-
How to Bind Word Document from the sql to Gridview using Asp.net
SAKTHIVEL P Sans Pareil IT Services Pvt Ltd Chennai
You don't. If you display a grid, you'll have multiple documents on your screen. Those will have the form of thumbnails. Otherwise you'd have to have a "verry" big screen. Once your user clicks on the thumb, show them the document in all it's glory. A tooltip that shows a textual abstract mined from the document would help the user in deciding it's relevancy. You never, never, never, nevernot show a list of Word-documents. It's more data than a human can process in a single screen, it's cluttering the navigation-grid with details that are not relevant to navigation, and you're hogging memory. If the file gets uploaded, create a nice thumbnail, extract some text, and use that. Simply display the entire file in the browser when the user hits that thumb, and all should be well.
Bastard Programmer from Hell :suss: if you can't read my code, try converting it here[^]
-
How to Bind Word Document from the sql to Gridview using Asp.net
SAKTHIVEL P Sans Pareil IT Services Pvt Ltd Chennai
To bind word document from the sql to srid view First design tables (Country and State) in your database based on another dropdown in asp.net. After completion of table design write code in your aspx page . http://www.dapfor.com/en/net-suite/net-grid/tutorial/data-sorting
-
How to Bind Word Document from the sql to Gridview using Asp.net
SAKTHIVEL P Sans Pareil IT Services Pvt Ltd Chennai
Do you mean: var wordDocsList = dbAccess.GetWordDocs(param); gridviewID.datasource = wordDocsList gridviewID.databind(); <%#wordDocsList.DocTitle%> -- check out my new website www.topthat.com