I am applying a Tooltip to the menu item. I am using
<a href="" title'"XXXXXXXXXXXXXXXXXXXXXXXXXXXX" >
It is working in IE and also in Mozilla, but if the text is multiline, in Mozilla it is not wrapping, and it is displaying only little part of the text.
How to wrap the Tooltip title text...
I solved the problem...
Instead of 'AddAt' I used 'Add'
this.phInfo.Controls.Add(ptoInstance);
no need using 'i' in 'Add' as an argument, as it will always be added to the end of the collection.
hi
As u said
"I think that it's the 'if' within the 'for' loop. You always increment 'i' but you don't always add to the collection. "
Yes I don't want to add everytime to the colletion...
and it is giving error on on 3rd iteartion...
Can u pls tell me logically what to do .....
thanks for ur response
phInfo is a PlaceHolder
inside the for loop it is like this....
ptoInfoData.InfoRow[] infoRow = GetInfoRow();
for (int i=0; i < infoRow.Length; i++)
{
if (! smInfoId.Contains(infoRow[i].info_id))
{
//did some coding here
Control ptoInstance =...
Hi........
The error is ...System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. Parameter name: index
My code is like this.........
ptoInfoData.InfoRow[] infoRow = GetInfoRow();
for (int i=0; i < infoRow.Length; i++)
{
if (...
Hi I am having a doubt abt a CheckBox in a Repeater Control.
When a checkBox is false I am unable to set Attributes..
this is what my code in C#
if (rptId == 14)
{
CheckBox chk = (CheckBox)e.Item.FindControl("chkEP");
chk.Attributes.Add("rptId", reportId.ToString())...
Now this part is working
HtmlLink link = new HtmlLink();
link.Attributes.Add("type", "text/css");
link.Attributes.Add("rel", "stylesheet");
link.Href = "../Css/landing.css";
Page.Controls.Add(link);
the error is..by mistake I have given like this...
Hi,
I am having problem in writing the stylesheet using C# code-behind. I have written a code, but it is not affecting my pages. Can any one please tell me how to write... This is the code
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
<link rel="stylesheet"...
Hi,
May be this is an easy thing for you, I am struggling with this as I am a beginner.I am trying to pass "'" to the javascript.
Example: "Nina's doll"
I must pass this sentence to javascript. I tried like this from C#
test=test.Replace("'","\'");
and also like this...
Hi,
I am new to C#. I am just learning. I am struck with a problem. I have created a usercontrol with dynamic table with radiobuttons. Now I don't know how to
handle the event radioButton_SelectedIndexChanged.
This is a part of my code. Please help me.
Table InnerTable=new Table()...
hi,
I am having a problem with frames.
when a person logs in, a page will open which is having 2 frames- mainFrame and infoFrame
In the mainFrame two hyperlinks are there
members|Agents|logout
when they click on the members hyperlink it will show all hyperlinks related to memebers and when...
Hi
Is there any way where we can Refer the Columns in a Cursor Variable Without Defining Separate Variables For Fetching The Values in the Cursor
Regards
Hi DeCjute
This is the code used
the Above URL is not accessible .
Dim MyCDONTSMail
Set MyCDONTSMail = CreateObject("CDONTS.NewMail")
MyCDONTSMail.From= "trb@test.co.za"
MyCDONTSMail.To= "anand_anand10@yahoo.com
MyCDONTSMail.AttachFile...
Hi
I am using CDONTS in my application for sending emails and also for sendding a acrobat pdf file as an attachment.I see that in some case the attachment is going fine but in some other cases I see that the attachment is not viewed as an attachement .Instead I see some strange characters (i...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.