Click here to Skip to main content
15,868,292 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionChanging Table's Image [modified] Pin
Eddie19871-Aug-11 2:57
Eddie19871-Aug-11 2:57 
AnswerRe: Changing Table's Image [modified] Pin
Not Active1-Aug-11 3:18
mentorNot Active1-Aug-11 3:18 
GeneralRe: Changing Table's Image Pin
Eddie19871-Aug-11 3:23
Eddie19871-Aug-11 3:23 
Questionremoving aspx extension Pin
benams31-Jul-11 22:44
benams31-Jul-11 22:44 
Questiononfocus postback problem Pin
minckle31-Jul-11 12:06
minckle31-Jul-11 12:06 
AnswerRe: onfocus postback problem Pin
Not Active31-Jul-11 13:24
mentorNot Active31-Jul-11 13:24 
GeneralRe: onfocus postback problem [modified] Pin
minckle1-Aug-11 13:30
minckle1-Aug-11 13:30 
GeneralRe: onfocus postback problem Pin
Not Active1-Aug-11 14:24
mentorNot Active1-Aug-11 14:24 
You are not using AJAX, even in the slightest, most liberal definiation. AJAX is an out of band call, there is no postback involved. You should spend some time reading up on AJAX and its usage if you want to be doing web development.


<asp:TextBox runat='server' id='myText' onblur="AjaxCall();"/>
<span id='myResults'/>

function AjaxCall()
{
  $.ajax({   
    type: "POST",   
    url: "foo.aspx/Bar",   
    data: "text=" + $("[id$='myText']").text(),   
    success: onSuccess
  });
}

function onSuccess(data)
{
  $("#myResults).text(data);
}

[WebMethod()]
public static string Bar(string text)
{
   // DO something
   return "something";
}


ALso make note of code snippets are properly formatted. Now you try.

I know the language. I've read a book. - _Madmatt

Questionhow to get previous page and details remain Pin
Cyberoxy31-Jul-11 9:50
Cyberoxy31-Jul-11 9:50 
AnswerRe: how to get previous page and details remain Pin
Not Active31-Jul-11 13:22
mentorNot Active31-Jul-11 13:22 
AnswerRe: how to get previous page and details remain Pin
Bernhard Hiller31-Jul-11 19:45
Bernhard Hiller31-Jul-11 19:45 
QuestionHow to replace image onmouseover Pin
Eddie198730-Jul-11 9:12
Eddie198730-Jul-11 9:12 
AnswerRe: How to replace image onmouseover Pin
Shahriar Iqbal Chowdhury/Galib31-Jul-11 4:16
professionalShahriar Iqbal Chowdhury/Galib31-Jul-11 4:16 
GeneralRe: How to replace image onmouseover Pin
Eddie19871-Aug-11 1:09
Eddie19871-Aug-11 1:09 
GeneralRe: How to replace image onmouseover Pin
Not Active1-Aug-11 2:08
mentorNot Active1-Aug-11 2:08 
QuestionHave Session in Global.asax File Pin
Member 322226430-Jul-11 6:29
Member 322226430-Jul-11 6:29 
AnswerRe: Have Session in Global.asax File Pin
Keith Barrow30-Jul-11 8:23
professionalKeith Barrow30-Jul-11 8:23 
Questionneed to display data on email Pin
CyberHeart 230-Jul-11 6:20
CyberHeart 230-Jul-11 6:20 
AnswerRe: need to display data on email Pin
Not Active30-Jul-11 13:01
mentorNot Active30-Jul-11 13:01 
QuestionRender ASP.Net code at run time Pin
Dilan200630-Jul-11 3:06
Dilan200630-Jul-11 3:06 
AnswerRe: Render ASP.Net code at run time Pin
Ali Al Omairi(Abu AlHassan)30-Jul-11 7:05
professionalAli Al Omairi(Abu AlHassan)30-Jul-11 7:05 
AnswerRe: Render ASP.Net code at run time Pin
Dilan200630-Jul-11 15:54
Dilan200630-Jul-11 15:54 
GeneralRe: Render ASP.Net code at run time Pin
Dilan200631-Jul-11 5:13
Dilan200631-Jul-11 5:13 
GeneralRe: Render ASP.Net code at run time Pin
Ali Al Omairi(Abu AlHassan)4-Aug-11 6:27
professionalAli Al Omairi(Abu AlHassan)4-Aug-11 6:27 
QuestionUnexpected function of validation controls and tab panel [modified] Pin
Dominick Marciano29-Jul-11 9:05
professionalDominick Marciano29-Jul-11 9:05 

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.