Click here to Skip to main content
16,006,341 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: The viewstate supplied failed integrity check. only in IE Pin
SomeGuyThatIsMe6-Jun-08 2:49
SomeGuyThatIsMe6-Jun-08 2:49 
GeneralRe: The viewstate supplied failed integrity check. only in IE Pin
gtjr926-Jun-08 5:58
gtjr926-Jun-08 5:58 
GeneralRe: The viewstate supplied failed integrity check. only in IE Pin
X-L7-Jun-13 4:20
X-L7-Jun-13 4:20 
QuestionImage in datagrid Pin
eriditu6-Jun-08 2:34
eriditu6-Jun-08 2:34 
AnswerRe: Image in datagrid Pin
Vasudevan Deepak Kumar6-Jun-08 5:01
Vasudevan Deepak Kumar6-Jun-08 5:01 
Questioni don;t want to show up my query string value in address bar Pin
Pankaj Garg6-Jun-08 2:28
Pankaj Garg6-Jun-08 2:28 
AnswerRe: i don;t want to show up my query string value in address bar Pin
SomeGuyThatIsMe6-Jun-08 2:47
SomeGuyThatIsMe6-Jun-08 2:47 
QuestionProblem with javascript Pin
S.Aijaz6-Jun-08 2:11
S.Aijaz6-Jun-08 2:11 
i have four javascript functions three of them are called on mouse over of image control and one when page is loaded first time. it works fine on aspx page but when i use same code with content page (means by applying master page on aspx page) it does not work plz help.

code is given below

Javascript functions

<script language="javascript" type="text/javascript">

var Imag2=null;
var Imag3=null;
var Imag4=null;
var Pnl1=null;
var Pnl2=null;
var Pnl3=null;


window.onload = function()
{
Pnl1 = document.getElementById('Panel1');
Pnl2 = document.getElementById('Panel2');
Pnl3 = document.getElementById('Panel3');
Imag2 = document.getElementById('Image2');
Imag3 = document.getElementById('Image3');
Imag4 = document.getElementById('Image4');

Pnl1.style.display = 'block';
Pnl2.style.display = 'none';
Pnl3.style.display = 'none';
Imag2.style.display = 'none';
Imag3.style.display = 'block';
Imag4.style.display = 'block';

}

function Panel1(Image)
{
Pnl1.style.display = 'block';
Pnl2.style.display = 'none';
Pnl3.style.display = 'none';
Imag2.style.display = 'none';
Imag3.style.display = 'block';
Imag4.style.display = 'block';
}


function Panel2(Image)
{
Pnl1.style.display = 'none';
Pnl2.style.display = 'block';
Pnl3.style.display = 'none';
Imag2.style.display = 'block';
Imag3.style.display = 'none';
Imag4.style.display = 'block';
}

function Panel3(Image)
{
Pnl1.style.display = 'none';
Pnl2.style.display = 'none';
Pnl3.style.display = 'block';
Imag2.style.display = 'block';
Imag3.style.display = 'block';
Imag4.style.display = 'none';
}

</script>
AnswerRe: Problem with javascript Pin
Guffa6-Jun-08 3:24
Guffa6-Jun-08 3:24 
GeneralRe: Problem with javascript Pin
S.Aijaz8-Jun-08 18:24
S.Aijaz8-Jun-08 18:24 
Questionajax postbak question Pin
thedom26-Jun-08 2:06
thedom26-Jun-08 2:06 
Questionerror while copying a file in asp.net 2.0 Pin
vijaylumar6-Jun-08 1:37
vijaylumar6-Jun-08 1:37 
AnswerRe: error while copying a file in asp.net 2.0 Pin
ToddHileHoffer6-Jun-08 1:55
ToddHileHoffer6-Jun-08 1:55 
GeneralRe: error while copying a file in asp.net 2.0 Pin
vijaylumar6-Jun-08 3:04
vijaylumar6-Jun-08 3:04 
QuestionDynamically loaded user control's button event firing problem Pin
jophinmichael6-Jun-08 1:17
jophinmichael6-Jun-08 1:17 
AnswerRe: Dynamically loaded user control's button event firing problem Pin
ToddHileHoffer6-Jun-08 1:58
ToddHileHoffer6-Jun-08 1:58 
QuestionDiv not being shown and hidden in Content Page [modified] Pin
.NET- India 6-Jun-08 0:41
.NET- India 6-Jun-08 0:41 
Questionfreezing problem [modified] Pin
asakthi_viji6-Jun-08 0:07
asakthi_viji6-Jun-08 0:07 
AnswerRe: freezing problem Pin
eyeseetee6-Jun-08 0:12
eyeseetee6-Jun-08 0:12 
GeneralRe: freezing problem Pin
asakthi_viji6-Jun-08 0:17
asakthi_viji6-Jun-08 0:17 
QuestionRe: freezing problem Pin
asakthi_viji6-Jun-08 0:29
asakthi_viji6-Jun-08 0:29 
Questionwhen i edit the gridview the database value dint bind on dropdownlist and check box Pin
priyamsc6-Jun-08 0:04
priyamsc6-Jun-08 0:04 
QuestionBest way to retrieve data from SQL Server Pin
kensai5-Jun-08 23:39
kensai5-Jun-08 23:39 
AnswerRe: Best way to retrieve data from SQL Server Pin
eyeseetee6-Jun-08 0:11
eyeseetee6-Jun-08 0:11 
AnswerRe: Best way to retrieve data from SQL Server Pin
ToddHileHoffer6-Jun-08 2:09
ToddHileHoffer6-Jun-08 2:09 

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.