Click here to Skip to main content
15,885,546 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: can onblur method of javascript is also possible in c#.net scripting i am trying it but it not works have any similar method there ? Pin
Christian Graus14-Mar-09 12:16
protectorChristian Graus14-Mar-09 12:16 
GeneralRe: can onblur method of javascript is also possible in c#.net scripting i am trying it but it not works have any similar method there ? Pin
Alok Sharma ji14-Mar-09 15:28
Alok Sharma ji14-Mar-09 15:28 
GeneralRe: can onblur method of javascript is also possible in c#.net scripting i am trying it but it not works have any similar method there ? Pin
N a v a n e e t h14-Mar-09 16:32
N a v a n e e t h14-Mar-09 16:32 
GeneralRe: can onblur method of javascript is also possible in c#.net scripting i am trying it but it not works have any similar method there ? Pin
Christian Graus14-Mar-09 21:43
protectorChristian Graus14-Mar-09 21:43 
GeneralRe: can onblur method of javascript is also possible in c#.net scripting i am trying it but it not works have any similar method there ? Pin
N a v a n e e t h15-Mar-09 3:29
N a v a n e e t h15-Mar-09 3:29 
GeneralRe: can onblur method of javascript is also possible in c#.net scripting i am trying it but it not works have any similar method there ? Pin
Abhishek Sur14-Mar-09 21:58
professionalAbhishek Sur14-Mar-09 21:58 
AnswerRe: can onblur method of javascript is also possible in c#.net scripting i am trying it but it not works have any similar method there ? Pin
Alok Sharma ji15-Mar-09 17:36
Alok Sharma ji15-Mar-09 17:36 
QuestionLinkButton cann't work [modified] Pin
sohighthesky14-Mar-09 6:14
sohighthesky14-Mar-09 6:14 
I don't know why all the LinkButton in my C#.net website cann't work,
It means that if i clicked the button just like i have nothing to do with it.
Can someone help me?waiting online

the browser has not any problem.

Now i know what cause this problem,but i don't know how to solve.
my website reference a outside javascript file,the file content is:
// JScript 文件
var imgObj;
function showImage(imgsrc)
{
    if(imgObj!=null) {
        document.body.removeChild(imgObj);
    }
    imgObj=document.createElement("div");//消息层
    imgObj.setAttribute("id","imgDiv");
    imgObj.setAttribute("align","center");
    imgObj.style.border="0";
    imgObj.style.position="absolute";
    var X=event.x;
    if(X<=screen.width*41/100)
        X=X+100;
    else if(X>=screen.width*59/100)
        X=X-200-350;
    else
        X=screen.width*59/100;
    imgObj.style.left=X;
    imgObj.style.top="30%";
    imgObj.style.marginTop=-75+document.documentElement.scrollTop+"px";
    imgObj.style.zIndex="1000";
    imgObj.innerHTML="<img src='"+imgsrc+"' onerror='return true' height=400 width=350 />";
    document.body.appendChild(imgObj);
}
function hideImage()
{
    document.body.removeChild(imgObj);
    imgObj=null;
}


this script is to show the bigger image onmouseover,but i don't know why it can cause this problem.

modified on Saturday, March 14, 2009 10:05 PM

AnswerRe: LinkButton cann't work Pin
N a v a n e e t h14-Mar-09 6:22
N a v a n e e t h14-Mar-09 6:22 
AnswerRe: LinkButton cann't work Pin
Christian Graus14-Mar-09 8:11
protectorChristian Graus14-Mar-09 8:11 
QuestionResize gridview column width dynamically like component art grid Pin
ashishparihar131014-Mar-09 3:00
ashishparihar131014-Mar-09 3:00 
AnswerRe: Resize gridview column width dynamically like component art grid Pin
N a v a n e e t h14-Mar-09 6:21
N a v a n e e t h14-Mar-09 6:21 
QuestionAccessing listitem object collection... Pin
Radiv Jeshya14-Mar-09 2:48
Radiv Jeshya14-Mar-09 2:48 
AnswerRe: Accessing listitem object collection... Pin
N a v a n e e t h14-Mar-09 6:17
N a v a n e e t h14-Mar-09 6:17 
QuestionDisplay data according to cultural settings in SQL Report Pin
Shivan Nandan14-Mar-09 0:59
Shivan Nandan14-Mar-09 0:59 
AnswerRe: Display data according to cultural settings in SQL Report Pin
N a v a n e e t h14-Mar-09 6:13
N a v a n e e t h14-Mar-09 6:13 
GeneralRe: Display data according to cultural settings in SQL Report Pin
Shivan Nandan15-Mar-09 19:54
Shivan Nandan15-Mar-09 19:54 
QuestionShare Point [modified] Pin
JAYRAJ GIRI14-Mar-09 0:33
JAYRAJ GIRI14-Mar-09 0:33 
AnswerRe: Share Point Pin
Abhijit Jana14-Mar-09 0:43
professionalAbhijit Jana14-Mar-09 0:43 
AnswerRe: Share Point Pin
Sathesh Sakthivel14-Mar-09 1:39
Sathesh Sakthivel14-Mar-09 1:39 
AnswerRe: Share Point Pin
Christian Graus14-Mar-09 8:36
protectorChristian Graus14-Mar-09 8:36 
QuestionImpact of .NET Framework on IIS 6.0 Pin
bishwambhar_sen14-Mar-09 0:05
bishwambhar_sen14-Mar-09 0:05 
AnswerRe: Impact of .NET Framework on IIS 6.0 Pin
Abhijit Jana14-Mar-09 0:21
professionalAbhijit Jana14-Mar-09 0:21 
Questionxsd files Pin
antony beula13-Mar-09 23:38
antony beula13-Mar-09 23:38 
AnswerRe: xsd files Pin
Abhijit Jana14-Mar-09 0:41
professionalAbhijit Jana14-Mar-09 0: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.