Click here to Skip to main content
15,889,720 members
Everything / CSHTML

CSHTML

CSHTML

Great Reads

by Sreekanth Mothukuru
The idea is to implement the latest and first of its kind “Always Encrypted” feature provided by Microsoft SQL Server 2016 designed to encrypt/decrypt sensitive data on back-end database engine

Latest Articles

by Sreekanth Mothukuru
The idea is to implement the latest and first of its kind “Always Encrypted” feature provided by Microsoft SQL Server 2016 designed to encrypt/decrypt sensitive data on back-end database engine

All Articles

Sort by Score

CSHTML 

5 Jun 2023 by Richard Deeming
Quote: ... when branch code exist then return true and if not exist return false ... string branches = _db.Branch.Single(x => x.iBranchCode == BranchCode).iBranchCode.ToString(); If the branch doesn't exist, the Single method will throw an...
7 Sep 2021 by KarNullKa
In the component view library project, my tag helpers are not working. The view works, but in the VS2019 editor the tag helpers don't work. What I have tried: In the test project for the library the tag helpers work there is a _ViewImports file...
14 Apr 2022 by Member 12600566
I'm trying to create an Editor Template for a DateTime field. The display of the field works as it should, however when the field gets posted back top the server it looses its value. I'm using flatpickr for the date part and the time part. My...
14 Apr 2022 by Member 12600566
The issue was that the model itself was not stored in the Editor Template: once I replaced: @Html.TextBox("value", Model, new { @id = "Value", @class = "form-control", @readonly ="readonly" }) by @Html.HiddenFor(model => model, new { @id =...
5 Jul 2016 by Sreekanth Mothukuru
The idea is to implement the latest and first of its kind “Always Encrypted” feature provided by Microsoft SQL Server 2016 designed to encrypt/decrypt sensitive data on back-end database engine
5 Jun 2023 by OriginalGriff
The JSON for true is a string containing the word "true". I think you can guess what the JSON for false is. If necessary, you can wrap this in a class: "value:true" that gives you a bool property: public class Root { public...
10 Oct 2023 by Basel Shikh Osman
visual studio community on cshtml page when collapse some part and if i press enter the previous one expand What I have tried: Disable Auto-Collapse: Visual Studio might be configured to automatically collapse sections of code. You can disable...
5 Jun 2023 by ahmed_sa
I working on mvc asp.net csharp i need to make function return json result when branch code exist then return true and if not exist return false so can you help me do this function return json result true or false What I have tried: httpget ...