Click here to Skip to main content
15,913,215 members
Home / Discussions / C#
   

C#

 
GeneralRe: chemsketch Pin
BobJanova14-Jul-11 4:27
BobJanova14-Jul-11 4:27 
GeneralRe: chemsketch PinPopular
Richard MacCutchan14-Jul-11 4:30
mveRichard MacCutchan14-Jul-11 4:30 
GeneralRe: chemsketch Pin
BobJanova14-Jul-11 5:09
BobJanova14-Jul-11 5:09 
QuestionSearching XML file Pin
NarVish13-Jul-11 23:26
NarVish13-Jul-11 23:26 
AnswerRe: Searching XML file Pin
Mirko198014-Jul-11 1:17
Mirko198014-Jul-11 1:17 
GeneralRe: Searching XML file Pin
NarVish14-Jul-11 2:22
NarVish14-Jul-11 2:22 
AnswerRe: Searching XML file Pin
Not Active14-Jul-11 1:59
mentorNot Active14-Jul-11 1:59 
QuestionAdding a hyperlink to a sentence of text in a bulleted list Pin
Wheels01213-Jul-11 8:31
Wheels01213-Jul-11 8:31 
Good afternoon.

We created a control (somecontrol.cs) which displays a dynamic bullet list. In some scenerios, one of the bullets will have a hyperlink.

The problem is, the a href code renders as text. We are adding to a string List and using it as the DataSource for the bulleted list:
private BulletedList _blConfirmText = new BulletedList(); 
List<string> displayText = new List<string>();
_confirmText.Text = CONFIRMTEXTLB;
                    displayText.Add(BULLETONELB);
                    displayText.Add(BULLETTWOLB);
                  
                    if (hasUpdateAccess)                    
                        displayText.Add(BULLETTHREELBHL);                          
                    else
                        displayText.Add(BULLETTHREELB);

//set the bullet style and load the bulletd list
            _blConfirmText.CssClass = "bulletItems";
            _blConfirmText.DataSource = displayText;
            _blConfirmText.DataBind();


Any idea how to get this to render correctly? Any suggestions? Thank you, WHEELS
AnswerRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Shameel13-Jul-11 21:53
professionalShameel13-Jul-11 21:53 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Wheels01214-Jul-11 1:28
Wheels01214-Jul-11 1:28 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
BobJanova14-Jul-11 2:04
BobJanova14-Jul-11 2:04 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Wheels01214-Jul-11 2:06
Wheels01214-Jul-11 2:06 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Shameel14-Jul-11 2:16
professionalShameel14-Jul-11 2:16 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
BobJanova14-Jul-11 2:16
BobJanova14-Jul-11 2:16 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Wheels01214-Jul-11 4:11
Wheels01214-Jul-11 4:11 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
BobJanova14-Jul-11 4:25
BobJanova14-Jul-11 4:25 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Shameel14-Jul-11 4:53
professionalShameel14-Jul-11 4:53 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Wheels01214-Jul-11 7:54
Wheels01214-Jul-11 7:54 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Shameel14-Jul-11 8:08
professionalShameel14-Jul-11 8:08 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Wheels01215-Jul-11 7:45
Wheels01215-Jul-11 7:45 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Shameel15-Jul-11 7:58
professionalShameel15-Jul-11 7:58 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Wheels01215-Jul-11 8:04
Wheels01215-Jul-11 8:04 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Shameel15-Jul-11 8:11
professionalShameel15-Jul-11 8:11 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Wheels01215-Jul-11 8:14
Wheels01215-Jul-11 8:14 
GeneralRe: Adding a hyperlink to a sentence of text in a bulleted list Pin
Shameel15-Jul-11 8:19
professionalShameel15-Jul-11 8:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.