开发者

ASP.NET Resource resx String tooltip display help

开发者 https://www.devze.com 2023-03-07 03:04 出处:网络
I have a string, Mini-move.Help, stored in a resource file that I would like displayed whenever user clicks on the help image that is displayed.

I have a string, Mini-move.Help, stored in a resource file that I would like displayed whenever user clicks on the help image that is displayed.

NOTE: the help image is displayed dynamically when you add the .HELP to your resource string.

I want to style this display in such a way that when user clicks on the image button generated as a result of storing the resx file, a popup/toolt开发者_运维百科ip like popup shows up instead.

Every Few Minutes - MM:
<br />Every Hour - H; <br />
Every Day - D;Su,Mo,Tu,We,Th,Fr,Sa;<br />

How do I accomplish this please?

thanks in advance


<img src="[path]"  title="" onclick="this.setAttribute('title', '<%$ Resources:SiteResources,Mini-move.Help %>');" />

This will set title on image when click event occures

0

精彩评论

暂无评论...
验证码 换一张
取 消