2012-05-03 18 views
0

私はfollwoingコードを使用していますが、私のwebmethodではプレーンHTMLを返しています。 コンテンツタイプはこちらですか?jquery ajaxを使用してRaw HTMLをASP.netに呼び出す方法[Webmethod]

function PopulateTimetable(pGroupId) { 
        $.ajax({ 
         type: "POST", 
         cache: false, 
         url: "StudentTimetable.aspx/PopulateTimetable", 
         data: "{ 'pGroupId': '"+51+"'}", 
         contentType: "application/json; charset=utf-8", 
         dataType: "html", 
         timeout: 10000, 
         success: function(data) { 
          $("#divTimetable").removeClass("Progress");       
          $("#divTimetable").html("").append(data); 
         }, 
         error: function() { 
           $("#divTimetable").removeClass("Progress"); 
           alert("An unexpected error has occurred during processing."); 
         } 
        }); 
       } 

答えて

0

私はここ$("#divTimetable").html("").append(data.d);を使用し、それが

今正常に動作します
関連する問題