ASP.NET Page with child and parent
Good night,
I have a control page and atm it only has a side bar and I wanted to know if its possible to have a child /parent page inside that page like WindowsForms. My Idea is basically having the sidebar as the Main Page anmd when the user clicks in one of the options it doesnt change the page only the "Square" right next to the Side Bar (The side bar is on the left). Also wanted to know if there is better and more secure aways of sending data from Front End to Back End without using POST
8 Replies
Razor Pages and MVC are rendered server-side
So the whole page will reload
But you can pull out the sidebar to a layout, for example
Ye that was my idea in case the child parent thingy didnt work
Far as secure ways of sending data... why would a POST request not be secure?
ok let me rephrase
if there is a better way of sending data
isntead of
sry in advance if im just being dumb
Besides using Javascript, no
But even then, it would still just be a POST request
Although, with JS, you could use websockets instead, if you wanted to
so with POST im all good and its a good way to transfer data from frond end to backend?
Yes
As long as you use HTTPS, it will be secure
alr understood. Tysm for your help and time