1
If I create a Partial this way below "given as example":
<script>
//Codigos C# Meus documentos..
//Codigos Javascript...
</script>
... and within this partial contain code c#, this partial along with code c# and javascript will be running as client-side or server-side ...
Code C# is at all times executed on the side server
– Ricardo Pontual
In addition, the Partial View by containing server code and also an extension particularly processed by server (
.cshtml
for example) ends up being rendered on the side server, only thejavascript
runs all over the side client– Ricardo Pontual
Ha Thanks for the reply!
– Warleson Reis