Need To Automatically Highlight The Keywords In The Text Box Using Code Behind C#?

Apr 29, 2010

I m retrieving a text from SQL DB based on the Search criteria i give and displaying in the Textbox in asp.net. I need to highlight the words given in the search criteria in the displayed text.

For example : If i give "need" all the word "need" in textbox that is retrieved and displayed should be highlight in yellow color.

View 1 Replies


Similar Messages:

Automatically Highlight Specific Character In Link Text Using JQuery?

May 13, 2010

I'm adding hotkeys to a web application in order to enable keyboard shortcuts for our CSRs to use, to reduce injury and increase calls-per-hour. I'm using an ASP.net UserControl to inject javascript into the page and it's working great. I want the control to "just work", so that when hotkeys are assigned, using a declarative syntax, if the hotkeyed letter exists in the link text, it will be highlighted automatically, so the developer doesn't have to do anything, and also to maintain consistency in visual cues. Here's the code to assign hotkeys, if it matters:

<uc:HotKeysControl ID="theHotkeys" runat="server" Visible="true">
<uc:HotKey ControlName="AccStatus$btnInvoiceEverBill" KeyCode="ctrl+v" />
<uc:HotKey ControlName="AccStatus$btnRefund" KeyCode="ctrl+u" />
<uc:HotKey ControlName="thirdControl" KeyCode="ctrl+p" />
</uc:HotKeysControl>

I want something like:

<a href="whatever" name="thirdControl">Make a <span class=hotkey">P</span>ayment</a>

but I'm not married to the idea of injecting a <span/> in there if there's a better way. How can I do this in CSS or JQuery? Is there a way to pass in a letter to a CSS style and have it change the color of the text displayed? Should I generate javascript to highlight the text when the page loads? What would/did you do in this situation?

View 1 Replies

C# - How To Highlight Complete Words With Keywords With Regexp

Feb 26, 2010

I have a longer text and some keywords. I want to highlight these keywords in my text. That is no problem with this code:

private static string HighlightKeywords2(string keywords, string text)
{
// Swap out the ,<space> for pipes and add the braces
Regex r = new Regex(@", ?");
keywords = "(" + r.Replace(keywords, @"|") + ")";
// Get ready to replace the keywords
r = new Regex(keywords, RegexOptions.Singleline | RegexOptions.IgnoreCase);
// Do the replace
return r.Replace(text, new MatchEvaluator(MatchEval2));
}
private static string MatchEval2(Match match)
{
if (match.Groups[1].Success)
{
return "<b>" + match.ToString() + "</b>";
}
return ""; //no match
}

But when the word"tournament" is in the text and the keyword "tour" it becomes <b>tour</b>nament. I want to it to highlight the complete word: <b>tournament</b>.

View 1 Replies

Forms Data Controls :: Highlight Search Keywords In Gridview?

Jul 12, 2010

I build a serach function just using SelectCommand and SelectParameters, i.e.

<asp:SqlDataSource ID="SqlDataSource2" runat="server"
ConnectionString="<%$ ConnectionStrings:mprojectConnectionString %>"
SelectCommand="SELECT * FROM [publication] WHERE ((([character] LIKE '%' + @character + '%') AND ([type] = @type))
OR(([f11623] LIKE '%' + @f11623 + '%') AND ([type] = @type))
OR (([f1character] LIKE '%' + @f1character + '%') AND ([type] = @type))
OR(([nortonoxfordnumber] LIKE '%' + @nortonoxfordnumber + '%') AND ([type] = @type))
OR (([nortonoxfordtext] LIKE '%' + @nortonoxfordtext + '%') AND ([type] = @type)))">
<SelectParameters>
<asp:ControlParameter ControlID="TextBox1" Name="character" PropertyName="Text"
Type="String" />
<asp:ControlParameter ControlID="TextBox1" Name="f11623" PropertyName="Text"
Type="String" />
<asp:ControlParameter ControlID="TextBox1" Name="f1character"
PropertyName="Text" Type="String" />
<asp:ControlParameter ControlID="TextBox1" Name="nortonoxfordnumber"
PropertyName="Text" Type="String" />
<asp:ControlParameter ControlID="TextBox1" Name="nortonoxfordtext"
PropertyName="Text" Type="String" />
<asp:ControlParameter ControlID="DropDownList1" Name="type"
PropertyName="SelectedValue" Type="String" />
</SelectParameters>
</asp:SqlDataSource>

I am also using a dropdown box and a textbox for people to search within a particular area from the dropdown list.

Now, I would like to be able to highlight the keywords in my gridview table. I searched around on the Internet and found a lot of samples, but they are all related to the Gridview <templates>, however, I am using <BoundField> and sqlDataSource.

I just cound not figure out how can I add this highlight function to my current search function?

View 4 Replies

C# - Automatically Generate SEO Keywords Based On Dynamic Page Contents?

Jan 30, 2010

I have a webforms (framework 3.5) site with a TON of dynamic content. Depending on the url, one or many content items will be sent to the client. I need a way to generate meta keywords for SEO based on the contents of the page (or part of the page, if possible).

I've done a little research and am not really turning up anything that addresses my problem directly. I have, on the other hand, found some interesting stuff that might get me there with considerable work. One idea I have is to intercept the response buffer at Application_BeginRequest (global.asax), parse out some meaningful keywords, and inject them back into the response buffer. However, this seems like a pretty expensive process and I don't even know if it's possible. I also feel like there could be a way to do this with an HttpModule.

I'm interested in what the community has to say about this. Is there already an existing and accepted way to do this that I'm just missing.

View 2 Replies

Web Forms :: How To Extract Keywords From Text And Where Collect Them

Mar 14, 2011

1- how to extract keywords from text and where collect them?

2- how to find search engine keyword that redirect to my site?

3- best solution for collect keywords, tag and how work wtih them and where save them?

View 9 Replies

Web Forms :: Finding Keywords In Text And Linking To Products?

Dec 5, 2010

I want to find the keywords/products in text block and link them to my products.

Is a algorithm or sample code somewhere i can start with?

View 4 Replies

DataSource Controls :: Auto Complete - Get Keywords From Full Text Catalog?

May 30, 2010

This is my first time using autocomplete. I have everything up and running, but I want to return a list of more relevent keywords or phrases from my full text catalog, or the table that I search against. I have no idea where to start as far as my getcompletionlist goes.

So If I type in knee
a list appears
kneepads

here's my getCompletionList
Public Function GetCompletionList(ByVal prefixText As String, ByVal count As Integer) As String()
Dim items As New List(Of String)
Dim myConnectionString As String
myConnectionString = GetSQLConnString()
Dim mySelectQuery As String = "SELECT ShortDescription FROM ProductInfo WHERE FREETEXT(ShortDescription, @prefixText) OR FREETEXT(LongDescription, @prefixText) OR FREETEXT(ProductHTML, @prefixText) OR FREETEXT(PartNumber, @prefixText) ORDER BY RANK()
OVER (Order BY PartNumber, ShortDescription, LongDescription)"

[Code]....

View 2 Replies

C# - Way To Highlight Text While Typing In A Text Box

Aug 10, 2010

I want to highlight the text while typing in a TextBox. How can I do this?

View 1 Replies

Highlight Same Text In Two Textboboxes?

Dec 13, 2010

I try to find an elegant way to highlight same strings (not a single word, but a full sentence) in two textboboxes,

I try to find duplicate sentences

Example:

textbox 1:

sentence a, sentence b , sentence c.

textbox 2:

sentence b, sentence d, sentence e.

View 9 Replies

Installation :: Windows Installer Keywords / List Of All The Keywords Available In A Windows Installer Like [TargetDir] And [ProductVersion]?

Mar 7, 2011

Can anyone guide me to a website where I can see the list of all the keywords available in a windows installer like [TargetDir] and [ProductVersion].

Can anyone also show me a very detailed tutorial of customizing the windows installer?

View 1 Replies

Web Forms :: Display (old Values) Text Automatically In Text Box Somthing Like MS - Excel Cell?

Feb 13, 2011

Is there a way in .net to display the text automatically when i type the first letter or word in a text box? I am looking for something like MS-Excel.. In MS-Excel, if the first word is given, automatically it displays the remaining texts, only if values are given previously.

View 6 Replies

How To Programatically Highlight All The Text Within A Textbox

Feb 18, 2010

Just wondering if it is possible to programatically highlight all the text within a textbox.

Specifically, I have a text box with validation. If an error is thrown, I set the focus to the specified textbox, but the way it works now the user starts typing and none of the text that already exists disappears. I'm wondering if I can make it so that if the error is thrown, not only is the focus set to the textbox, but the text within the textbox is selected, so that if they simply start typing all of the old text disappears, or they can click and retype a single character if necessary.

View 6 Replies

C# - Way To Highlight Text In A Textbox Using Javascript

May 19, 2010

I have an ASP.NET 2.0 webapp (with C#). I wanted to add a button which, when clicked would highlight selected text. By 'highlight', I mean change the CSS properties of the text so that it can stand out. I think this can be done with some clientside JavaScript.I know that you can assign a Javascript function to the onclick event of an HTML input button, but since I'm not very proficient at JS the function itself I have no idea how to write

View 3 Replies

Highlight Text Changes Between Two Strings When Comparing?

Jun 3, 2010

I'm pretty sure this is in the wrong forum category, but I couldn't find a relevant category, so here goes!'m looking for a way of highlighting text changes between two sets of content, very similar to how this website's wiki works:For example, if I go to an edit page on the wiki, I can compare two versions and see the difference:[URL]

View 3 Replies

Web Forms :: Highlight Certain Text In Textbox?

Feb 1, 2010

I have 2 text boxes.

For example:

textbox1 = "Hello bob, How are you"
textbox2 = "Hello cad, how are you"

I have looped through each text box and know that the area I want to highlight on textBox 2 is between the charaters 7 and 9. How do I highlight only these characters as Bold and with a yellow background?

View 4 Replies

JQuery :: Highlight Specific Text In Iframe?

Mar 16, 2011

I have one gridview in mvc application in evry row gridview anchor tag then Url open in Iframe. anf if i want to search any specific word in Iframe i can write searchtext in textbox . and when i click on anchor tag then that specific text should me highlight in Iframe. following is is my Jquery. its working but Iframe is refresh only once. not next time so.. how can i do..

[Code]....

View 1 Replies

Web Forms :: Highlight And Copy Textbox Text On Click?

May 14, 2010

i wanted to know how i could go about selecting all the values of the textbox in one click, and then auto copying it.

So basically, the textbox is a read only, and has text inside, but when the user clicks the textbox, it will highlight the text in the textbox, and autocopy it.

View 5 Replies

Custom Server Controls :: Can't Highlight Textbox Text

Apr 10, 2010

I included an .ascx file into a .aspx file... I am having problem that I cant highlight the text as in select the text in the textbox

View 4 Replies

Forms Data Controls :: Highlight Text In A Dynamic Textbox

Oct 13, 2010

I have a dynamic textbox appearing in a gridview on the row editing function. I have the following code to set the focus tot he textbox:

GridView1.EditIndex = e.NewEditIndex
BindData()
GridView1.Rows(e.NewEditIndex).FindControl("txtTargetAmount").Focus()

This works fine, but I would now also like to select the data in the textbox so the user does not have to select the text before typing, they can just type straight away. I have been trying to use:

txtTargetAmount1.SelectionStart = 0
txtTargetAmount1.SelectionLength = txtTargetAmount1.Text.Length

but this does not work.

View 1 Replies

C# - Full Text Search Jquery - Highlight Yellow Background?

Mar 26, 2011

i have in my asp.net page a textarea where users type an article="long text" to be saved in the database. In another page i display these articles(textarea) in a :

<p class="p-article">
the text of the article goes here.
</p>

I'd like to filter these articles by search keywords .for example when a user search for "Startup Marketing".

I want to apply the keywords as a filter and get articles and bring those that contain "Startup" or "Marketing" or "Startup Marketinbg".And this in client side by jquery if possible.

View 1 Replies

Forms Data Controls :: How To Set Focus In Gridview Textbox And Highlight The Text If It Is Zero

Jan 6, 2010

I have a text box in a gridview that is causing some problems with user input. The first time the user opens the page the gridview is populated with zero's in all rows textboxes. I set the focus to the first textbox in the Page_Load event but the cursor is placed to the left of the zero and when some users enter data they don't realize the zero doesn't go away so the first row ends up wrong. Once the tab or enter key is hit and the next row is selected, the zero is "selected", for lack of a better term like when the insert key is predded, and once the user starts typing only the new value remains. Is there a way to make the zero in the first row "selected" ?

View 1 Replies

SQL Server :: Full Text Search In A Word Document - How To Highlight The String

Aug 17, 2010

I´m currently programming a web search application in ASP.Net and having problem with full text searching. My requirements are:

1. Save a byte array from SQL server to word document as a temp file in a server side?

2. How to highlight the string I am currently searching in the Word document and return to the user the sentence with the highlighted string (like on Bing or any other search engines)? Is it possible to fullfill this requirement with full-text search integrated in SQL Server 2008?

View 1 Replies

Data Controls :: Highlight Searched Text In Color In DataList Items

May 15, 2013

I have 1 Datalist and BTNsearch in my page below is SP

ALTER procedure [dbo].[AdminSearchP]
AS
BEGIN
SELECT * FROM House_p WHERE ID IN( SELECT DISTINCT houseP.ID FROM House_p houseP,SearchTerm WHERE [Description] LIKE '%' + SearchTerm.Name + '%')
END

this SP show in dataList  data that contain some words that I define in SerachTerm table

refer

Select-records-from-one-Table-and-Search-in-other-table-in-SQL-Server/

Now I want when I click on button and it show data in datalist it highlight the words in datalist that I define in SearchTerm Table i.e in serchTerm table i define below words

Paris-India-Itally-Germany

when I click on button it search in House_p table in Description Column and if in this column be above words show it in datalist

Like below

Name
Description
Sara
She is from India

Now I want when show data in datalist it bold or Highlight the words that I define in SearchTerm table Like below

Name
Description
Sara
She is from India
How I can do it? 

View 1 Replies

C# - Selected Row Highlight Not Moving When Gridview Is Sorted / Sorts Properly But The Highlight Stays On The Same Line?

Nov 5, 2010

I have an ASP.net gridview on a webform where user's can select a row. When they select it, the row is highlighted yellow. The problem is that when I sort the table, it sorts properly but the highlight stays on the same line. The data all moves, but the highlight stays put.

how I can make the highlight stay with the data?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved