Click here to Skip to main content
15,884,628 members

Comments by Jitendra.Jadav (Top 11 by date)

Jitendra.Jadav 2-Jan-15 3:02am View    
I am not getting any error but it is goes to infinite and not going forward.
Jitendra.Jadav 31-Dec-13 23:14pm View    
My Question is how to call JS value in Windows 8.1 native app through webView
webview simply not allow me to get JS value there is way where we can add Content URIs into package.appxmanifest, but in that case it is only allow online URI like Http://mypage.com so here I have a static page in my appx folder so it is not allow me to add..
and without URI adding I am not able to notify the ScritpNotification..

and withour scriptNotification I am not able to get postback jSon value
how I can figure out this issue...?

thank you.
Jitendra.Jadav 19-Jun-13 6:45am View    
[model.leadDetailModels.Id] this I want selecte ID and this is I am not able to get it is not giving me error but the selection is not change...
Jitendra.Jadav 16-Jun-13 0:31am View    
Hi,
I did same you told then I get error into _Layout.cshtml where I had given a @Html.RouteLink("Search", "Create", "SearchProperty")
error is like..

"A route named 'Create' could not be found in the route collection.
Parameter name: name"
Jitendra.Jadav 15-Jun-13 12:58pm View    
Hi,
I did as you said, but still not working..
again I am repeating my structure..
Controllers
/Property
SearchPropertyController.cs ---> inside I have a method that is calles "Creaet()"

now my View structure is like this.
Views
/Property
/SearchProperty
Create.cshtml


now my routes like this

routes.MapRoute(
name: "Search_Mapping",
url: "Property/SearchProperty/{controller}/{action}/{id}",
defaults: new { controller = "SearchProperty", action = "Create", id = UrlParameter.Optional }
);

and now I am calling like this

@Html.ActionLink("Search", "Create", "SearchProperty")


I am not able to get any resolution..?

thank you,