Is possible includes REACT in MVC.net project?Can a C# anonymous class implement an interface?Passing Data between View ControllersWhere to put model data and behaviour? [tl; dr; Use Services]Rerender view on browser resize with ReactDo zombies exist … in .NET?Why not inherit from List<T>?Loop inside React JSXReact “after render” code?React / JSX Dynamic Component NameProgrammatically navigate using react router

Square root of the square of the cosine: absolute value or not

Variable doesn't parse as string

Can the Cauchy product of divergent series with itself be convergent?

Is it uncompelling to continue the story with lower stakes?

How can I perform a deterministic physics simulation?

“The Fourier transform cannot measure two phases at the same frequency.” Why not?

Probably terminated or laid off soon; confront or not?

Can attackers change the public key of certificate during the SSL handshake

Movie with a girl/fairy who was talking to a unicorn in a snow covered forest

Formal mathematical definition of renormalization group flow

Is space radiation a risk for space film photography, and how is this prevented?

If someone else uploads my GPL'd code to Github without my permission, is that a copyright violation?

In MTG, was there ever a five-color deck that worked well?

Why wasn't interlaced CRT scanning done back and forth?

How is foot-pounds of energy defined?

GFCI tripping on overload?

Why is the Vasa Museum in Stockholm so Popular?

How do I handle a DM that plays favorites with certain players?

How do the surviving Asgardians get to Earth?

A verb for when some rights are not violated?

How do I know when and if a character requires a backstory?

How can I use commands with sudo without changing owner of the files?

How to design an effective polearm-bow hybrid?

Is the first page of a novel really that important?



Is possible includes REACT in MVC.net project?


Can a C# anonymous class implement an interface?Passing Data between View ControllersWhere to put model data and behaviour? [tl; dr; Use Services]Rerender view on browser resize with ReactDo zombies exist … in .NET?Why not inherit from List<T>?Loop inside React JSXReact “after render” code?React / JSX Dynamic Component NameProgrammatically navigate using react router






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















The project is MVC .NET and the view have RAZOR and Javascript + Jquery.
I really would use react for create new components , I really say if i could combinate react, razor and javascript in the views cshtml.










share|improve this question
























  • React is a client side framework. MVC can serve files to the client. So sure, it can work. Of course modern JavaScript apps have a whole build process they go through and you'll have to figure out how to integrate it with MVC. Why don't you just do a React site and have it talk to ASP.NET Web API? Why do you even need MVC if you're using React?

    – mason
    Mar 27 at 2:43











  • Ty, because all the app is MVC, and is so hard migrate ALL to web api and views. i am bored to use only javascript...

    – ariel diaz
    Mar 27 at 2:46







  • 1





    Have your controller in MVC return a view with your referenced JS assets, and an empty div with an id. Then use ReactDOM.render() to drop in your component.

    – lux
    Mar 27 at 2:48

















0















The project is MVC .NET and the view have RAZOR and Javascript + Jquery.
I really would use react for create new components , I really say if i could combinate react, razor and javascript in the views cshtml.










share|improve this question
























  • React is a client side framework. MVC can serve files to the client. So sure, it can work. Of course modern JavaScript apps have a whole build process they go through and you'll have to figure out how to integrate it with MVC. Why don't you just do a React site and have it talk to ASP.NET Web API? Why do you even need MVC if you're using React?

    – mason
    Mar 27 at 2:43











  • Ty, because all the app is MVC, and is so hard migrate ALL to web api and views. i am bored to use only javascript...

    – ariel diaz
    Mar 27 at 2:46







  • 1





    Have your controller in MVC return a view with your referenced JS assets, and an empty div with an id. Then use ReactDOM.render() to drop in your component.

    – lux
    Mar 27 at 2:48













0












0








0








The project is MVC .NET and the view have RAZOR and Javascript + Jquery.
I really would use react for create new components , I really say if i could combinate react, razor and javascript in the views cshtml.










share|improve this question














The project is MVC .NET and the view have RAZOR and Javascript + Jquery.
I really would use react for create new components , I really say if i could combinate react, razor and javascript in the views cshtml.







c# .net reactjs model-view-controller






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 27 at 2:40









ariel diazariel diaz

12 bronze badges




12 bronze badges















  • React is a client side framework. MVC can serve files to the client. So sure, it can work. Of course modern JavaScript apps have a whole build process they go through and you'll have to figure out how to integrate it with MVC. Why don't you just do a React site and have it talk to ASP.NET Web API? Why do you even need MVC if you're using React?

    – mason
    Mar 27 at 2:43











  • Ty, because all the app is MVC, and is so hard migrate ALL to web api and views. i am bored to use only javascript...

    – ariel diaz
    Mar 27 at 2:46







  • 1





    Have your controller in MVC return a view with your referenced JS assets, and an empty div with an id. Then use ReactDOM.render() to drop in your component.

    – lux
    Mar 27 at 2:48

















  • React is a client side framework. MVC can serve files to the client. So sure, it can work. Of course modern JavaScript apps have a whole build process they go through and you'll have to figure out how to integrate it with MVC. Why don't you just do a React site and have it talk to ASP.NET Web API? Why do you even need MVC if you're using React?

    – mason
    Mar 27 at 2:43











  • Ty, because all the app is MVC, and is so hard migrate ALL to web api and views. i am bored to use only javascript...

    – ariel diaz
    Mar 27 at 2:46







  • 1





    Have your controller in MVC return a view with your referenced JS assets, and an empty div with an id. Then use ReactDOM.render() to drop in your component.

    – lux
    Mar 27 at 2:48
















React is a client side framework. MVC can serve files to the client. So sure, it can work. Of course modern JavaScript apps have a whole build process they go through and you'll have to figure out how to integrate it with MVC. Why don't you just do a React site and have it talk to ASP.NET Web API? Why do you even need MVC if you're using React?

– mason
Mar 27 at 2:43





React is a client side framework. MVC can serve files to the client. So sure, it can work. Of course modern JavaScript apps have a whole build process they go through and you'll have to figure out how to integrate it with MVC. Why don't you just do a React site and have it talk to ASP.NET Web API? Why do you even need MVC if you're using React?

– mason
Mar 27 at 2:43













Ty, because all the app is MVC, and is so hard migrate ALL to web api and views. i am bored to use only javascript...

– ariel diaz
Mar 27 at 2:46






Ty, because all the app is MVC, and is so hard migrate ALL to web api and views. i am bored to use only javascript...

– ariel diaz
Mar 27 at 2:46





1




1





Have your controller in MVC return a view with your referenced JS assets, and an empty div with an id. Then use ReactDOM.render() to drop in your component.

– lux
Mar 27 at 2:48





Have your controller in MVC return a view with your referenced JS assets, and an empty div with an id. Then use ReactDOM.render() to drop in your component.

– lux
Mar 27 at 2:48












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55368987%2fis-possible-includes-react-in-mvc-net-project%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55368987%2fis-possible-includes-react-in-mvc-net-project%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript