Asp.net
Friday, July 30, 2010
Thickbox : rel attribute not working for image gallery
Existing Thickbox Code :
TB_TempArray
=
$("a[@rel="+imageGroup+"]").get();
Do
not include the @ sign
in it ie.
New Thickbox Code :
TB_TempArray
=
$("a[rel="+imageGroup+"]").get();
..............Njoy..!!
Thursday, July 29, 2010
To Replace Textbox Enter Key With
for Html
In order to replace textbox (txtComments) text enter key with
for html view :
string
strComments =
txtComments.Text.Replace
("\r\n", "<
br
>"
);
strComments =
txtComments.Text.Replace
("\r", "
<
br
>
");
strComments =
txtComments.Text.Replace
("\n", "
<
br
>
");
Now use
strComments
instead of txtComments.Text...!!!!
Newer Posts
Home
Subscribe to:
Posts (Atom)