TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
-------
NA
213
7.2k
how to give the color of changable word character
Oct 25 2020 7:46 AM
i am trying to give yellow color on changeable character
diff.aspx
<asp:TextBox ID=
"firsttextbox"
runat=
"server"
TextMode=
"MultiLine"
Width=
"500px"
Height=
"200px"
></asp:TextBox>
<asp:TextBox ID=
"secondtextbox"
runat=
"server"
TextMode=
"MultiLine"
Width=
"500px"
Height=
"200px"
></asp:TextBox>
<asp:Button ID=
"Button1"
runat=
"server"
Text=
"Compare"
OnClick=
"btnCompare_Click"
/>
<asp:Label ID=
"lblfirst"
runat=
"server"
Text=
""
></asp:Label><br />
<br />
<asp:Label ID=
"lblsecond"
runat=
"server"
Text=
""
></asp:Label><br />
diff.aspx.cs
protected
void
btnCompare_Click(object sender, EventArgs e)
{
//some code
lblfirst.Text =
"param1:"
+ string.Join(
" "
, getWordthatUpdated);
lblsecond.Text =
"param2:"
+ string.Join(
" "
, getUpdatedWordOfSlist);
}
I am trying to give yellow color on
s
character only
need help
Reply
Answers (
1
)
Select2 CURD demo in MVC.Net With Jquery?
Getting All Rows and not matching how to use left join in LINQ stateme