Click here to Skip to main content
15,890,282 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: ASP.net Web.Config Parser Error Message: Child Nodes Not Allowed Pin
Vimalsoft(Pty) Ltd21-Jul-09 23:59
professionalVimalsoft(Pty) Ltd21-Jul-09 23:59 
QuestionDynamic menu item Pin
suzzain21-Jul-09 20:57
suzzain21-Jul-09 20:57 
AnswerRe: Dynamic menu item Pin
Christian Graus21-Jul-09 21:20
protectorChristian Graus21-Jul-09 21:20 
GeneralRe: Dynamic menu item Pin
suzzain21-Jul-09 21:47
suzzain21-Jul-09 21:47 
QuestionEditing in FileUpload control Pin
yesu prakash21-Jul-09 20:52
yesu prakash21-Jul-09 20:52 
AnswerRe: Editing in FileUpload control Pin
Christian Graus21-Jul-09 20:53
protectorChristian Graus21-Jul-09 20:53 
AnswerRe: Editing in FileUpload control Pin
Zafar A khan 21-Jul-09 22:07
professionalZafar A khan 21-Jul-09 22:07 
QuestionProblem showing OnMouseOver PopUp at right mouse position. Pin
Rahul Chitte21-Jul-09 20:49
Rahul Chitte21-Jul-09 20:49 
Hi,
I need help regarding displaying small popup message when user mouse over the pointer the hyperlink, I have created this with javascript and it is showing the required popup onmouseover and onMouseOut it is hiding the popup using kill() method given below in code snippest but problem is whenever u scroll the page the popup msg will get displayed at the top and not on the hyperlink(onMouseOver)..
If anyone is having any idea of setting the mouse pointer to desired location or any alternate solution to show onHover popup using javascript.

Plz see code below:

      //Hover Text for SSN
Xoffset= 20 //-10; //-60;      // modify these values to ...
Yoffset= -25 //-150; //20;      // change the popup position.
        

var old,skn,iex=(document.all),yyy=-1000;

var ns4=document.layers
var ns6=document.getElementById&&!document.all
var ie4=document.all

if (ns4)
skn=document.dek
else if (ns6)
skn=document.getElementById("dek").style
else if (ie4)
skn=document.all.dek.style
if(ns4)document.captureEvents(Event.MOUSEMOVE);
else
{
      skn.visibility="visible"
      skn.display="none"
}
document.onmousemove=get_mouse;

function popup(msg,bak)
{
      var content="<TABLE   WIDTH=250 BORDER=1 BORDERCOLOR=#01244E CELLPADDING=2 CELLSPACING=0 "+
      "BGCOLOR="+bak+"><TD ALIGN=left style='padding-left:5px;font-size:8pt;font-family:Arial;color:#01244E'>"+msg+"</TD></TABLE>";
      yyy=Yoffset;
      if(ns4){skn.document.write(content);skn.document.close();skn.visibility="visible"}
      if(ns6){document.getElementById("dek").innerHTML=content;skn.display=''}
      if(ie4){document.all("dek").innerHTML=content;skn.display=''}
}

function get_mouse(e)
{
      var x=(ns4||ns6)?e.pageX:event.x+document.body.scrollLeft;
      skn.left=x+Xoffset;
      var y=(ns4||ns6)?e.pageY:event.y+document.body.scrollTop;
      skn.top=y+yyy;
     
}

function kill()
{
      yyy=-1000;
      if(ns4){skn.visibility="hidden";}
      else if (ns6||ie4)
      skn.display="none"
}
AnswerRe: Problem showing OnMouseOver PopUp at right mouse position. Pin
Christian Graus21-Jul-09 20:51
protectorChristian Graus21-Jul-09 20:51 
QuestionHow to add multiple rows on the datatable. Pin
megivimal21-Jul-09 20:29
megivimal21-Jul-09 20:29 
AnswerRe: How to add multiple rows on the datatable. Pin
Christian Graus21-Jul-09 20:42
protectorChristian Graus21-Jul-09 20:42 
AnswerRe: How to add multiple rows on the datatable. Pin
Abhishek Sur22-Jul-09 0:24
professionalAbhishek Sur22-Jul-09 0:24 
Questionhow to get image Pin
Rajee Maharjan21-Jul-09 20:19
Rajee Maharjan21-Jul-09 20:19 
AnswerRe: how to get image Pin
Christian Graus21-Jul-09 20:41
protectorChristian Graus21-Jul-09 20:41 
AnswerRe: how to get image Pin
Rajee Maharjan21-Jul-09 20:50
Rajee Maharjan21-Jul-09 20:50 
GeneralRe: how to get image Pin
Christian Graus21-Jul-09 20:52
protectorChristian Graus21-Jul-09 20:52 
AnswerRe: how to get image Pin
Rajee Maharjan21-Jul-09 20:56
Rajee Maharjan21-Jul-09 20:56 
GeneralRe: how to get image Pin
Christian Graus21-Jul-09 21:24
protectorChristian Graus21-Jul-09 21:24 
Questionhow many times a page is view Pin
amit sahu2021-Jul-09 20:11
amit sahu2021-Jul-09 20:11 
AnswerRe: how many times a page is view Pin
Christian Graus21-Jul-09 20:17
protectorChristian Graus21-Jul-09 20:17 
AnswerRe: how many times a page is view Pin
Jagz W21-Jul-09 23:04
professionalJagz W21-Jul-09 23:04 
Questionhow to get the value of the dropdownlist selected Pin
lakshmichawala21-Jul-09 18:52
lakshmichawala21-Jul-09 18:52 
AnswerRe: how to get the value of the dropdownlist selected Pin
Abhijit Jana21-Jul-09 18:55
professionalAbhijit Jana21-Jul-09 18:55 
GeneralRe: how to get the value of the dropdownlist selected Pin
lakshmichawala21-Jul-09 19:08
lakshmichawala21-Jul-09 19:08 
GeneralRe: how to get the value of the dropdownlist selected Pin
Christian Graus21-Jul-09 19:41
protectorChristian Graus21-Jul-09 19:41 

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.