Showing posts with label component. Show all posts
Showing posts with label component. Show all posts

Wednesday, March 28, 2012

text content interface/component/control?

i wish to create a interface for my client to enter their news/announcement.
I've seen forums that has very nice interface that allow you click on
buttons such as "Bold", "Italic", "Underline", "URL", etc. How do i create
such interface? Or is there such a component? Within dreamweaver? How should
i go about developing such a interface? Thanks.Michael wrote:

> i wish to create a interface for my client to enter their news/announcement.
> I've seen forums that has very nice interface that allow you click on
> buttons such as "Bold", "Italic", "Underline", "URL", etc. How do i create
> such interface? Or is there such a component? Within dreamweaver? How should
> i go about developing such a interface? Thanks.

Take a look and see if http://www.freetextbox.com/ has what you need.

Daniel

Monday, March 26, 2012

Text Image Component

Just wondering if anyone has ever seen a 3rd party component that
facilitates the creation of text images. I know I can "roll my own" but was
not wanting to reinvent the wheel. I searched www.asp.net and google, but
didn't find anything other than how-to articles.
Thanks!There was some good example code of a simple text/image component in
the book Developing Microsoft ASP.NET Server Controls and Components. I
believe the source code used is freely available at the website.
http://www.microsoft.com/mspress/books/5728.asp
Actually, that would be in the companion content section.
[url]http://www.microsoft.com/mspress/books/companion/5728.asp#Companion%20Content[/url
]

Text Image Component

Just wondering if anyone has ever seen a 3rd party component that
facilitates the creation of text images. I know I can "roll my own" but was
not wanting to reinvent the wheel. I searched www.asp.net and google, but
didn't find anything other than how-to articles.

Thanks!There was some good example code of a simple text/image component in
the book Developing Microsoft ASP.NET Server Controls and Components. I
believe the source code used is freely available at the website.

http://www.microsoft.com/mspress/books/5728.asp
Actually, that would be in the companion content section.

http://www.microsoft.com/mspress/bo...anion%20Content

Saturday, March 24, 2012

Text Search component

Can anyone recommend a good component For adding a search feature to a
website that will search the text in a database

Thanks in advance

JohnWhy can't you build it yourself?
It's very easy - but there are multiple considerations that a single
component could never narrow down...
First, you need to decide which field(s) you are searching. You can use a
DropDownList or TextBox

Then, you need to decide how you want to display the results. You could use
a Grid, or a customized way of displaying, say, like a DataList - -

The rest is just connecting to the dabase, querying the database and
retrieving the results, basically.

Is there something you're looking for that's different than what I've
described here?

--
David Wier
MVP/ASPInsider
http://aspnet101.com
http://aspexpress.com
"John Haycock" <jhayc@.blueyonder.co.ukwrote in message
news:7rSRg.17359$aP3.3774@.fe3.news.blueyonder.co.u k...

Quote:

Originally Posted by

Can anyone recommend a good component For adding a search feature to a
website that will search the text in a database
>
Thanks in advance
>
John
>
>
>


"David Wier" <david_wier@.noSpamhotmail.comwrote in message
news:%23qPHQtM4GHA.1268@.TK2MSFTNGP02.phx.gbl...

Quote:

Originally Posted by

Why can't you build it yourself?
It's very easy - but there are multiple considerations that a single
component could never narrow down...
First, you need to decide which field(s) you are searching. You can use a
DropDownList or TextBox
>
Then, you need to decide how you want to display the results. You could
use
a Grid, or a customized way of displaying, say, like a DataList - -
>
The rest is just connecting to the dabase, querying the database and
retrieving the results, basically.
>
Is there something you're looking for that's different than what I've
described here?
>
--
David Wier
MVP/ASPInsider
http://aspnet101.com
http://aspexpress.com
>


Hi David
Thanks for the help
I would want to be able to search the database for specific strings like you
do in a standard search engine so the user could search for exact string
matches or keywords.

I could set up most of what you have talked about but I imagine you would
need to use some advanced regular expressions and I wouldn't know where to
begin

John

Text Search component

Can anyone recommend a good component For adding a search feature to a
website that will search the text in a database
Thanks in advance
JohnWhy can't you build it yourself?
It's very easy - but there are multiple considerations that a single
component could never narrow down...
First, you need to decide which field(s) you are searching. You can use a
DropDownList or TextBox
Then, you need to decide how you want to display the results. You could use
a Grid, or a customized way of displaying, say, like a DataList - -
The rest is just connecting to the dabase, querying the database and
retrieving the results, basically.
Is there something you're looking for that's different than what I've
described here?
David Wier
MVP/ASPInsider
http://aspnet101.com
http://aspexpress.com
"John Haycock" <jhayc@.blueyonder.co.uk> wrote in message
news:7rSRg.17359$aP3.3774@.fe3.news.blueyonder.co.uk...
> Can anyone recommend a good component For adding a search feature to a
> website that will search the text in a database
> Thanks in advance
> John
>
>
"David Wier" <david_wier@.noSpamhotmail.com> wrote in message
news:%23qPHQtM4GHA.1268@.TK2MSFTNGP02.phx.gbl...
> Why can't you build it yourself?
> It's very easy - but there are multiple considerations that a single
> component could never narrow down...
> First, you need to decide which field(s) you are searching. You can use a
> DropDownList or TextBox
> Then, you need to decide how you want to display the results. You could
> use
> a Grid, or a customized way of displaying, say, like a DataList - -
> The rest is just connecting to the dabase, querying the database and
> retrieving the results, basically.
> Is there something you're looking for that's different than what I've
> described here?
> --
> David Wier
> MVP/ASPInsider
> http://aspnet101.com
> http://aspexpress.com
>
Hi David
Thanks for the help
I would want to be able to search the database for specific strings like you
do in a standard search engine so the user could search for exact string
matches or keywords.
I could set up most of what you have talked about but I imagine you would
need to use some advanced regular expressions and I wouldn't know where to
begin
John