My Screen goes blank and url navigate to "http://localhost:4200/" when I tried to add Form> tag on newly created page (Angular + .Net Core)
10 Answer(s)
-
0
-
0
Is there an error in the browser console?
-
0
-
0
HI @optixdev, Follow the instructions for angular reactive forms, in your case I don't think you have imported the ReactiveFormsModule to your module:
imports: [ FormsModule, ReactiveFormsModule,
Hope that helps.
-
0
-
-1
@optixdev, I feel for you, you are obviously at the bottom of a steep learning curve! Your problem is not Zero related but angular related, google "angular can't bind to 'formgroup' since it isn't a known property of 'form'" and you will find your answer amongst 3,000 choices: Can't bind to 'formGroup' since it isn't a known property of 'form' Good luck!!
-
0
@bobingham same Angular code is running on the another application but its not running on the Zero, hope you understand.
-
-1
Not a problem, check your module declarations in your other project, it's obviously an import issue. Glad to help if I can but I think with a little more perserverance you'll find the issue here.
-
0
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
imports: [ FormsModule, BrowserModule, ReactiveFormsModule ],
-
0
See above, first answer!!!!