Click here to Skip to main content
15,892,537 members
Home / Discussions / Web Development
   

Web Development

 
Questionjavascript parent iframe access problem Pin
umeshdaiya26-Oct-08 22:32
umeshdaiya26-Oct-08 22:32 
QuestionHow to create a ErrorProvider in Web Form? Pin
meki_211826-Oct-08 20:41
meki_211826-Oct-08 20:41 
AnswerRe: How to create a ErrorProvider in Web Form? Pin
Eduard Keilholz27-Oct-08 22:42
Eduard Keilholz27-Oct-08 22:42 
Questionuse of ajax in asp.net Pin
indukala24-Oct-08 22:18
indukala24-Oct-08 22:18 
AnswerRe: use of ajax in asp.net Pin
Shyam Bharath27-Oct-08 1:39
Shyam Bharath27-Oct-08 1:39 
AnswerRe: use of ajax in asp.net Pin
leckey27-Oct-08 10:06
leckey27-Oct-08 10:06 
GeneralRe: use of ajax in asp.net Pin
Paul Conrad29-Oct-08 8:01
professionalPaul Conrad29-Oct-08 8:01 
AnswerRe: use of ajax in asp.net Pin
Aman Bhullar3-Nov-08 23:43
Aman Bhullar3-Nov-08 23:43 
I suggest you to use JavaScript AJAX.
Fire a JavaScript function on mouse over. Make a server call using Get/Post method and fetch response from Server.
Display the Details in Div tag. You need not to use any control for implementation.

// JScript File
/*
* ajax_CreateXMLHttpRequest : This functions creates an XMLHttpRequest object    
*                             based on the browser
*/
function ajax_CreateXMLHttpRequest()
{
	var xmlHttpRequest = null;
   
	/*
	* For Firefox, Mozilla, Safari
	*/
	if (window.XMLHttpRequest)
	{
		xmlHttpRequest = new XMLHttpRequest();
	}
	/*
	* For Microsoft Internet Explorer
	*/
	else if (typeof ActiveXObject != "undefined")
	{
		xmlHttpRequest = new ActiveXObject("Microsoft.XMLHTTP");
	}
   
	return xmlHttpRequest;
}

function ajax_MakeAnAJAXGetCall()
{
	var dtDate = new Date();
	var tURL= "";
	
	tURL = "functions_AJAX.aspx?<argumentlist>"
	
	ajaxObj = ajax_CreateXMLHttpRequest();
	if (ajaxObj != null)
	{
		var URL = tURL;
		//alert(URL);
		ajaxObj.open("GET", URL, true);
		ajaxObj.onreadystatechange = ajax_CallBack;
		ajaxObj.send(null);
	}
   
	return false;
}

function ajax_CallBack()
{
	if (ajaxObj.readyState == 4)
	{
		if (ajaxObj.status == 200)
		{
			var ajaxResponse = ajaxObj.responseText;
			//Place your code to display the Response			
		}
	}//END OF ajaxObj.readyState
}//END OF ajax_CallBack

</argumentlist>


Make a call to function ajax_MakeAnAJAXGetCall on mouse over event.
QuestionMoving xml file fails Pin
Ekjon24-Oct-08 7:44
Ekjon24-Oct-08 7:44 
AnswerRe: Moving xml file fails Pin
Shog925-Oct-08 5:59
sitebuilderShog925-Oct-08 5:59 
GeneralRe: Moving xml file fails Pin
Ekjon27-Oct-08 5:18
Ekjon27-Oct-08 5:18 
GeneralRe: Moving xml file fails Pin
Shog927-Oct-08 5:26
sitebuilderShog927-Oct-08 5:26 
GeneralRe: Moving xml file fails [modified] Pin
Ekjon27-Oct-08 10:03
Ekjon27-Oct-08 10:03 
QuestionAdding a border to an image Pin
Brendan Vogt24-Oct-08 6:22
Brendan Vogt24-Oct-08 6:22 
AnswerRe: Adding a border to an image Pin
Mohammad Dayyan24-Oct-08 8:39
Mohammad Dayyan24-Oct-08 8:39 
AnswerRe: Adding a border to an image Pin
Drew Stainton24-Oct-08 8:42
Drew Stainton24-Oct-08 8:42 
QuestionJavaScript Selection/Range Problem [modified] Pin
Lea Hayes24-Oct-08 0:27
Lea Hayes24-Oct-08 0:27 
AnswerRe: JavaScript Selection/Range Problem Pin
Aman Bhullar3-Nov-08 23:50
Aman Bhullar3-Nov-08 23:50 
QuestionRegular Expression Pin
ganeshMohan23-Oct-08 18:51
ganeshMohan23-Oct-08 18:51 
AnswerRe: Regular Expression Pin
Mohammad Dayyan24-Oct-08 2:47
Mohammad Dayyan24-Oct-08 2:47 
GeneralRe: Regular Expression Pin
Paul Conrad24-Oct-08 5:46
professionalPaul Conrad24-Oct-08 5:46 
QuestionDelegates in C# Pin
jainvidhya8423-Oct-08 3:34
jainvidhya8423-Oct-08 3:34 
AnswerRe: Delegates in C# Pin
Aman Bhullar3-Nov-08 23:55
Aman Bhullar3-Nov-08 23:55 
QuestionCannot retrieve the value from my session (cast type error) Pin
Aldeareao23-Oct-08 2:34
Aldeareao23-Oct-08 2:34 
AnswerRe: Cannot retrieve the value from my session (cast type error) Pin
Ashfield23-Oct-08 23:52
Ashfield23-Oct-08 23:52 

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.