Hi all,
 
 I am developing an application in MVC razor engine.I am stuck with small problem,I created 4 different tabs.code releated to first tab is worked fine.but when i try to bind the data in second tab it not working .
can any one guide me is any thing i missed in that code ?
Here i am attaching my code in  view of application.
 
 







TransferLog

@using (Html.BeginForm("FTEPartial", "FTE", FormMethod.Post))
{




























@Html.LabelFor(FTE => FTE.selCountry)


@Html.DropDownListFor(FTE => FTE.selCountry, Enumerable.Empty())

@Html.LabelFor(FTE => FTE.selServiceName)

@Html.TextBoxFor(FTE => FTE.selServiceName)
@Html.LabelFor(FTE => FTE.isAudit)
@Html.RadioButtonFor(FTE => FTE.isAudit, true, new { @id = "radAudit" })

   

@Html.RadioButtonFor(FTE => FTE.isAudit, false, new { @id = "radException" })


@Html.LabelFor(FTE => FTE.selStartDateTime)

@Html.EditorFor(FTE => Model, "propStartFullDateTime")

@Html.LabelFor(FTE => FTE.selEndDateTime)


@Html.EditorFor(FTE => Model, "propEndFullDateTime")

@Html.LabelFor(FTE => FTE.selResultsPerPage)

@Html.DropDownListFor(FTE => FTE.selResultsPerPage, Model.commonProp.resultsPerPage)



}












@*region tabs-Service Catlog remote tab *@



Service Catalog


























@Html.LabelFor(FTE => FTE.Service_CataLog_selections.selServiceName)

@Html.TextBoxFor(FTE => FTE.Service_CataLog_selections.selServiceName)

@Html.LabelFor(FTE => FTE.Service_CataLog_selections.selSourceAgent)


@Html.DropDownListFor(FTE => FTE.Service_CataLog_selections.selSourceAgent, Enumerable.Empty(), "Please select")

@Html.LabelFor(FTE => FTE.Service_CataLog_selections.selTargetAgent)

@Html.DropDownListFor(FTE => FTE.Service_CataLog_selections.selTargetAgent, Enumerable.Empty())

@Html.LabelFor(FTE => FTE.Service_CataLog_selections.selSourceSystem)

@Html.DropDownListFor(FTE => FTE.Service_CataLog_selections.selSourceSystem, Enumerable.Empty())

@Html.LabelFor(FTE => FTE.Service_CataLog_selections.selTargetSystem)

@Html.DropDownListFor(FTE => FTE.Service_CataLog_selections.selTargetSystem, Enumerable.Empty())











@*endregion tabs-Service Catalog remote*@
 
 
 
 
for binding data in first tab i wrote like this