ASP controls or normal html link in jgrowl

658 Views Asked by At

I have been using jgrowl, can i know how to use Asp controls in jgrowl or ?? because i need to display a link in notification, when user clicks that link i need to redirect to desired page is that possible ??

1

There are 1 best solutions below

1
On BEST ANSWER

There are a few ways you could get the result you are looking for, I don't know for sure which would be good enough to solve your problem, so lets try the easiest one. I'd create a function in a regular HTML script section to wrap jGrowl's code

<script>
function wrapLinkLegend(url,text){
 $.jGrowl("<a href='"+text+"'>"+text+"</a>");
}
</script>

then from your .net code call this function... i.e.

protected void Page_Load(object sender, EventArgs e)
{
   string url="http://www.google.com";
   string linkText = "Click me!";
   ScriptManager.RegisterClientScriptBlock(
                                this,
                                this.GetType(),
                                Guid.NewGuid().ToString(),//Perhaps "dummy" would be enough
                                String.Format("wrapLinkLegend('{0}','{1}');",url,linkText);
                                true);
}

If this is not good enough let me know and we could try a different approach

regards