-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
Here is the latest in my link-listing series. If you haven’t already, check out this month’s "Find a Hoster” page on the www.asp.net website to learn about great (and very inexpensive) ASP.NET hosting offers. [In addition to blogging, I am also now using Twitter for quick updates…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I built an ajax chat in one of my mvc website. everything is working fine. I am using polling. At certain interval i am using $.post to get the messages from the db. But there is a problem. The message retrieved using $.post keeps on repeating. here is my javascript code and controller method.
var…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
i use ajax.beginform with EnableClientValidation. problem -the form sends data to controller in any case even the form is not correct -what the proiblem?
the second qusion- i return ajax data like this
return Json(new { value = "msg" });
how can i parse this data from javascript on view?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm doing the simplest ajax request possible:
public ActionResult SayHello()
{
return Content("YYAAAY");
}
//////////
<div id="Div1">
<%= Ajax.ActionLink("SAY HELLO", "SayHello", new AjaxOptions { UpdateTargetId = "Div1" })%>
</div>
It works when I start…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, I've read the article http://davidhayden.com/blog/dave/archive/2009/05/19/ASPNETMVCAjaxBeginForm.aspx and now I have small problem with that code:
<%using (Ajax.BeginForm("ChangeData", new AjaxOptions { UpdateTargetId = "myLabel" }))
{ %>
<input id="mbutton" type="submit" value="blabla"…
>>> More