tags:

views:

51

answers:

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

  $(document).ready(function(){
  alert("pass");
  $.ajax({
  type:"Post",
  url:"/Milestone/PartialCreate",
  data:"",

  success:function(result){
  alert("pass");
  $("#ReplyDetails").html(result);
  },
  error:function(result){
  alert("fail");
  alert(result);
  }

  });
  });

  </script>
  <div id="ReplyDetails"></div>

i also included the file

   <script src="../../Scripts/jquery-1.3.2.js" type="text/javascript"></script>

in head section.

it shows Success By alerts

But it is not going to the Partial View?

any suggestions Please

A: 

Its Working No Fault in this Code I am Viewing from the Wrong Angle..

SAHIL SINGLA
A: 

I also have Tried this code its Working

SAHIL SINGLA