 |
BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0  | This is the forum to discuss the Wrox book ASP.NET 2.0 Website Programming: Problem - Design - Solution by Marco Bellinaso; ISBN: 9780764584640 |
|
Welcome to the p2p.wrox.com Forums.
You are currently viewing the BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|
|

October 1st, 2007, 09:46 AM
|
|
Authorized User
|
|
Join Date: Oct 2005
Posts: 48
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hi Yes it is running fine.
But there are a couple of things missing.
The Filter by Category on ResultPage is missing
and the Search Tag Catalogue link is missing.
And the code for making the Search words yellow on the Showpage is also missing, so can you add them please :)
|
|

October 1st, 2007, 01:53 PM
|
|
Friend of Wrox
|
|
Join Date: Mar 2007
Posts: 488
Thanks: 2
Thanked 11 Times in 10 Posts
|
|
Quote:
quote:Originally posted by FT
Hi Yes it is running fine.
But there are a couple of things missing.
The Filter by Category on ResultPage is missing
and the Search Tag Catalogue link is missing.
And the code for making the Search words yellow on the Showpage is also missing, so can you add them please :)
|
glad you got it sorted out. unfortunately, the features you mention as being missing are V2 features which i haven't yet factored out from the exisitng code. the V1.n stuff is purely the search 'engine' and presentation layer (which to be honest, was 75% of the effort). you should be able to hopefully 'guess' at how the category stuff plugs in. as for the tags, that's still a work in progress, so it could be some time before that is released on it's own.
let me know if you think of anything to add onto the existing v1.n tho!!
jimi
http://www.originaltalent.com
|
|

October 4th, 2007, 08:18 AM
|
|
Authorized User
|
|
Join Date: Oct 2005
Posts: 48
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I just figured out that my hosting company dosen't support Text serach in the database.
Argument: It uses to much resources.
|
|

October 4th, 2007, 08:22 AM
|
|
Authorized User
|
|
Join Date: Oct 2005
Posts: 48
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I think it is allwayes nice to give the customer and simple version and then a advanced version of a search box.
So you could add a couple of figures like date, and allso add paging.
|
|

October 7th, 2007, 11:58 AM
|
|
Friend of Wrox
|
|
Join Date: Sep 2003
Posts: 143
Thanks: 0
Thanked 1 Time in 1 Post
|
|
Jim,
Here's the code to create the indexes :)
USE [SQL2005_390746_eo]
GO
/****** Object: Index [IX_TBH_Articles_Approved] Script Date: 10/07/2007 18:10:19 ******/
CREATE NONCLUSTERED INDEX [IX_TBH_Articles_Approved] ON [dbo].[TBH_Articles]
(
[Approved] ASC
)WITH
(
PAD_INDEX = OFF
, STATISTICS_NORECOMPUTE = OFF
, SORT_IN_TEMPDB = OFF
, IGNORE_DUP_KEY = OFF
, DROP_EXISTING = OFF
, ONLINE = OFF
, ALLOW_ROW_LOCKS = ON
, ALLOW_PAGE_LOCKS = OFF
) ON [PRIMARY]
CREATE NONCLUSTERED INDEX [IX_TBH_Articles_ReleaseDate] ON [dbo].[TBH_Articles]
(
[ReleaseDate] ASC
)WITH
(
PAD_INDEX = OFF
, STATISTICS_NORECOMPUTE = OFF
, SORT_IN_TEMPDB = OFF
, IGNORE_DUP_KEY = OFF
, DROP_EXISTING = OFF
, ONLINE = OFF
, ALLOW_ROW_LOCKS = ON
, ALLOW_PAGE_LOCKS = OFF
) ON [PRIMARY]
CREATE NONCLUSTERED INDEX [IX_TBH_Articles_OnlyForMembers] ON [dbo].[TBH_Articles]
(
[OnlyForMembers] ASC
)WITH
(
PAD_INDEX = OFF
, STATISTICS_NORECOMPUTE = OFF
, SORT_IN_TEMPDB = OFF
, IGNORE_DUP_KEY = OFF
, DROP_EXISTING = OFF
, ONLINE = OFF
, ALLOW_ROW_LOCKS = ON
, ALLOW_PAGE_LOCKS = OFF
) ON [PRIMARY]
CREATE NONCLUSTERED INDEX [IX_TBH_Posts_Approved] ON [dbo].[TBH_Posts]
(
[Approved] ASC
)WITH
(
PAD_INDEX = OFF
, STATISTICS_NORECOMPUTE = OFF
, SORT_IN_TEMPDB = OFF
, IGNORE_DUP_KEY = OFF
, DROP_EXISTING = OFF
, ONLINE = OFF
, ALLOW_ROW_LOCKS = ON
, ALLOW_PAGE_LOCKS = OFF
) ON [PRIMARY]
CREATE NONCLUSTERED INDEX [IX_TBH_Posts_LastPostDate] ON [dbo].[TBH_Posts]
(
[LastPostDate] ASC
)WITH
(
PAD_INDEX = OFF
, STATISTICS_NORECOMPUTE = OFF
, SORT_IN_TEMPDB = OFF
, IGNORE_DUP_KEY = OFF
, DROP_EXISTING = OFF
, ONLINE = OFF
, ALLOW_ROW_LOCKS = ON
, ALLOW_PAGE_LOCKS = OFF
) ON [PRIMARY]
CREATE NONCLUSTERED INDEX [IX_TBH_Posts_ParentPostID] ON [dbo].[TBH_Posts]
(
[ParentPostID] ASC
)WITH
(
PAD_INDEX = OFF
, STATISTICS_NORECOMPUTE = OFF
, SORT_IN_TEMPDB = OFF
, IGNORE_DUP_KEY = OFF
, DROP_EXISTING = OFF
, ONLINE = OFF
, ALLOW_ROW_LOCKS = ON
, ALLOW_PAGE_LOCKS = OFF
) ON [PRIMARY]
HTH, and thanks for taking the time to put this together.
Peter
http://entropia-online.blogspot.com/
|
|

October 7th, 2007, 02:40 PM
|
|
Friend of Wrox
|
|
Join Date: Mar 2007
Posts: 488
Thanks: 2
Thanked 11 Times in 10 Posts
|
|
Peter, thanks for that too ;)
jimi
http://www.originaltalent.com
|
|

October 8th, 2007, 09:43 AM
|
|
Friend of Wrox
|
|
Join Date: Aug 2006
Posts: 131
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
the server for my site does not have the option available they say.
|
|

October 8th, 2007, 10:19 AM
|
|
Friend of Wrox
|
|
Join Date: Mar 2007
Posts: 488
Thanks: 2
Thanked 11 Times in 10 Posts
|
|
kherrerab - checkout webhost4life. they give the full range of options, including full-text search as well as allowing all standard remote sql tools to be used against their sqlserver database.
jimi
http://www.originaltalent.com
|
|

October 8th, 2007, 03:08 PM
|
|
Friend of Wrox
|
|
Join Date: Aug 2006
Posts: 131
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
i use liquidsix.com they are great too but they say they have deactivated this option for the moment.
|
|

October 8th, 2007, 03:45 PM
|
|
Friend of Wrox
|
|
Join Date: Sep 2003
Posts: 143
Thanks: 0
Thanked 1 Time in 1 Post
|
|
I have the same tools at my disposal at discountasp.net.
http://entropia-online.blogspot.com/
|
Similar Threads
|
| Thread |
Thread Starter |
Forum |
Replies |
Last Post |
| Announce: Site Generator V2 now available |
jimibt |
BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 |
56 |
October 2nd, 2009 01:06 PM |
| [Announce] Intellium For Web is released |
Intellium |
ASP.NET 1.0 and 1.1 Basics |
0 |
April 3rd, 2008 03:23 AM |
| TBH Search Engine Optimization |
retroviz |
BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 |
3 |
November 5th, 2007 04:55 PM |
| Anyone created a search module? |
doanhvu |
BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 |
6 |
August 12th, 2007 12:19 AM |
| Search module |
vantoko |
BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 |
6 |
August 7th, 2007 07:48 AM |
|
 |