We need to develop a specific webpage with php and so far we have used asp.net, the problem is that we cannot take typical development steps in php.
For asp.net:
- Design Interface (aspx / html) (with visual designer)
- Creating control events (clicking on a button, combo selection, etc.) (for example, double-clicking on the x control generates an asociated click event in codebehind)
- Add control logic / business system (X button is pressed-> make x control visible / enabled / change your text. Intellisense or autocomplete, or so, by detecting objects and controls that exist on the design page)
In php, there is no clear connection between the programmed page and php code (for example, how to break all intellisense in asp.net and use only response.write () for visual changes: S)
After some search for the model, we use asp.net WebForms (and not mvc.net), so the desired parameter will be constructor + constructor just like WebForms, as possible ...
So ... is there any framework + ide that helps with this problem?
source share