2
Answers

ASP.net MVC 4 Panel visible true/false depends on the condit

vishwas l

vishwas l

12y
4.2k
1
Hi guys,


I am beginner  in MVC 4, I am facing problem to achieve one simple requirement. The problem described as below.

I have 3 roles(Programmer,reviewer,Admin) and 1 razor view, that has 4 panels and each panel has set of controls  , depends on the role and the some condition i have to make panels visible false/true.

Please help me out. 



Thanks and regards 
Vishwa
Answers (2)
0
Vulpes

Vulpes

NA 98.3k 1.5m 13y
There's a standard algorithm for doing this in C programming - see http://www.geeksforgeeks.org/archives/3133

The C# translation would be:

using System;

class Program
{
    static void Main()
    {
       int[] arr = {3, 2, 7, 10};
       Console.WriteLine("Maximum sum of array 1 is {0}", FindMaxSum(arr));
       int[] arr2 = {3, 2, 5, 10, 7};
       Console.WriteLine("Maximum sum of array 2 is {0}", FindMaxSum(arr2));
       Console.ReadKey();
    }

    static int FindMaxSum(int[] arr)
    {
      int n = arr.Length;
      int incl = arr[0];
      int excl = 0;
      int excl_new;
 
      for (int i = 1; i < n; i++)
      {
         /* current max excluding i */
         excl_new = Math.Max(incl, excl);
 
         /* current max including i */
         incl = excl + arr[i];
         excl = excl_new;
      }
 
      /* return max of incl and excl */
      return Math.Max(incl, excl);
    }
}