mz1378
mz1378

Reputation: 2602

Does "jQuery Unobtrusive Ajax Helpers in ASP.NET Core" work in Asp.Net Core Razor Pages (New Web Framework from Microsoft)

A download is available in this link jQuery Unobtrusive Ajax Helpers in ASP.NET Core

That I use in my "Asp.Net MVC Core 2.0" applications and eases my work. Is this library works in "Asp.Net Core 2.0 Razor Pages" so that I can render a "Partial Page" in a <Div id="###"></Div> element anywhere on the page and Use Post and Get Ajax calls to my page handlers. and If yes Can I nest an ajax form in a "Partial Page" to load another Partial Page in that?

Upvotes: 0

Views: 2785

Answers (1)

Dmitry Pavlov
Dmitry Pavlov

Reputation: 28290

Sure, why not?

You can use jQuery Unobtrusive AJAX in ASP.NET Core Razor Pages as well as render partial pages.

Upvotes: 2

Related Questions