How to write unit tests for asp.net core web api controller

So I am very new to writing tests. I created an ASP.NET core web api along with angular. I have to write unit tests for the web API controllers. I have been reading Microsoft documentation on how to get started with unit tests of ASP.NET web APIs. But I am still very unsure on how to go about writing proper tests.

What is wrong in this rdlc expression. When ever the difference is zero it throws error

=iif(Sum(Fields!ClsRead.Value)-Sum(Fields!OpnRead.Value)=0,"NO HSD Supplied",sum(Fields!HSDIssued.Value)/(Sum(Fields!ClsRead.Value)-Sum(Fields!OpnRead.Value))) Answers: Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible. Method … Read more

DetailsView Error: “Must declare the scalar value…”

I am attempting to use DetailsView in ASP.NET and c# to show a list of students that are associated with the logged-in user (which will be a teacher after they login to the system). I have been trying to using scalar values so my program can be more dynamic once a teacher types in the last name of the student they want to find in the system. I’m not sure why I am getting the error
must declare the scalar value
when I (think I) am declaring it on the ASP side of my code. I’ve been searching for solutions to this for a couple of hours now so any and all help would be greatly appreciated.

Multiline textbox value split using javascript in Asp.Net C#

Asp.Net C# Multiline textbox(textbox1) value split after 35 charaters of address & add to textbox(textbox2 – Singleline) again split next 35 charaters & add to textbox(textbox3 – Singleline) again split next 35 charaters & add to textbox(textbox4 – Singleline) again split next 35 charaters & add to textbox(textbox5 – Singleline).
Note: While Splitting value after 35 characters make sure if a word is incomplete then add that word in next line like(…31 address – here at add position of address is 35 characters so it’ll get slipt & gets add to new textbox, but I want that word address in new textbox & from their it should count to 35 charaters like so on.)