Hi All,
I'm tasked to develop a Content Management System.
Is there any possibility to achieve content search by using ASP.net ?
Thanks
Printable View
Hi All,
I'm tasked to develop a Content Management System.
Is there any possibility to achieve content search by using ASP.net ?
Thanks
Hey,
You certainly should be able to, yes.
Have you seen the Content Management System examples that are readily available from Microsoft?
http://www.asp.net/community/projects/
This should hopefully give you a good starting point.
Gary
Thanks Gep13.
I was just wondering that if my file is stored in binary format.
It still be able to?
Hey,
As long as you know the format of the binary file, and the information that you want out of it, then again, this shouldn't be a problem.
Gary
Thanks Gep13,
Then I need to select all file from database binary field, convert it back to
original and use indexes search for my file content?
Do you have any good reference?
Hey,
So, let me see if I have this correct....
You are wanting to create an index of your site using SQL Server, then you want to be able to search the index file that is created? Is that correct?
That doesn't seem very logical to me.
The idea behind creating an index of your database is that it speeds up query times, not that you search the resulting file that is output.
Gary
Hey,
Here is one reference that may be of use:
http://www.codeproject.com/KB/asp/indexserver.aspx
Gary