This question is locked. New answers and comments are not allowed.
Hey guys i made a tab strip to contain a grid
but when i load the content of the grid the tab strip adds a value by it self
can you plz help me fix why that is happening?
and when the request is sent it gives a 500 error because
GET http://localhost:20706/IPhoneDevice/Show?iUserID=1&_=1308095586506 500 (Internal Server Error)
and there is nothing in my system that adds the number , and when i load the user edit view it loads smoothly
Thanks
but when i load the content of the grid the tab strip adds a value by it self
can you plz help me fix why that is happening?
@{ Html.Telerik().TabStrip() .Name("TabStrip") .Items(tabstrip => { tabstrip.Add() .Text("User IPhoneDevices") .ImageUrl("~/Content/edit.png") .LoadContentFrom("Show", "IPhoneDevice", new { iUserID = ViewData["iUserID"] }); tabstrip.Add() .Text("User Details") .ImageUrl("~/Content/edit.png") .LoadContentFrom("Edit","User",new {iUserID=ViewData["iUserID"]}); }) .SelectedIndex(0) .Render();}and when the request is sent it gives a 500 error because
GET http://localhost:20706/IPhoneDevice/Show?iUserID=1&_=1308095586506 500 (Internal Server Error)
and there is nothing in my system that adds the number , and when i load the user edit view it loads smoothly
Thanks