0
aspx.csからasp.netハンドラにオブジェクトデータを渡したいのですが、それは別のプロジェクトにまたがって行きます。コメントは感謝しています。プロジェクトB(TQueueDtcsController.cs)httppost to asp net handler
public ActionResult integrationservice(String tQueueDtcslist)
{
try
{
List<TQueueDtcIntegration> ListOftQueueDtc = JsonConvert.DeserializeObject<List<TQueueDtcIntegration>>(tQueueDtcslist);
// String[] value_arr = tQueueDtc.ProductName.Split(new char[] { '-' });
if (ListOftQueueDtc.Count() <=0)
{ return Content("list is empty", "application/text"); }
foreach (TQueueDtcIntegration tQueueDtcint in ListOftQueueDtc)
{
//performed some thing
}
}
ハンドラは拡張に固有です。 ASP.NETにはすでに '.aspx'用に登録されているものがあります。 –