Code Behind and the Editor

Code Behind and the Editor

donnadonna Posts: 2Questions: 1Answers: 0

Can code behind (c#) be used with the editor? I searched through the documentation and couldn't find anything. Is there a link?

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 63,815Questions: 1Answers: 10,517 Site admin
    Answer ✓

    I'm not sure that code behind or inline code are directly applicable to Editor to be honest. My understanding is that terminology is used for the code that is used to initially render the web-page, but Editor doesn't require any server-side code to initially render - its just plain HTML, CSS and Javascript. The Javascript will then request data from the server, and perform any submits for data updates. This is why Web API fits so well with Editor, and Web API is used for the .NET examples.

    Allan

  • donnadonna Posts: 2Questions: 1Answers: 0

    Thanks Allan.

This discussion has been closed.