Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6149083
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:23:34+00:00 2026-05-23T19:23:34+00:00

I’m writing an asp.net mvc reservations app. in c# where in a grid view

  • 0

I’m writing an asp.net mvc “reservations” app. in c# where in a grid view I have a few statuses of the review process, like “new”, “pending, “approved”, “declined” along with details about each request.

Is it possible for just one review status (“Pending”, for example, ) to be an action link, so a user can click on it and see a checklist of reservation requirements.

Right now I have all statuses as an action link:
columns.Template(o =>
{
%>
<%= Html.ActionLink(o.Status, "Details", new { id = o.ID })%>
<%
}).Title("Status").Width(50);

But I need just one of them, “pending” to be active, and others just to be displayed in a view.

Thank you very much for any help!

Here is a more complete code:
`columns.Bound(o => o.Status);
columns.Template(o =>
{
%>
<% if (o.Status == “New”) { %>
<% using (Html.BeginForm(“Pending”, “ReservationRequests”)) { %>
<%= Html.AntiForgeryToken() %>
<%= Html.Hidden(“ID”, o.ID) %>

<% } %>
<% } %>

                <%
            }).Title(string.Empty).Width(50);

        columns.Template(o =>
            {
            %>

                <% if (o.Status == "Declined" | o.Status == "New" | o.Status == "Pending")
                   { %>
                    <% using (Html.BeginForm("Approve", "ReservationRequests")) { %>
                        <%= Html.AntiForgeryToken() %>
                        <%= Html.Hidden("ID", o.ID) %>
                        <input type="submit" value="Approve" class="submit" />
                    <% } %>
                <% } %>
                <%
            }).Title(string.Empty).Width(50);
        columns.Template(o =>
            {
                %>
                <% if (o.Status == "Approved" | o.Status == "New" | o.Status == "Pending")
                   { %>
                    <% using (Html.BeginForm("Decline", "ReservationRequests")) { %>
                        <%= Html.AntiForgeryToken() %>
                        <%= Html.Hidden("ID", o.ID) %>
                        <input type="submit" value="Decline" class="submit" />
                    <% } %>
                <% } %>
                <%
            }).Title(string.Empty).Width(50);`
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T19:23:35+00:00Added an answer on May 23, 2026 at 7:23 pm

    I think what you’re asking for is Conditional Rendering. There are plenty of examples out there. But you could just do something like:

    @if (status == "pending") {
        columns.Template(o => { %> <%= Html.ActionLink(o.Status, "Details", new { id = o.ID })%> <% }).Title("Status").Width(50);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have an MVC Razor view @{ ViewBag.Title = Index; var c = (char)146;
I am writing an app with both english and french support. The app requests
I have thousands of HTML files to process using Groovy/Java and I need to
I have a view passing on information from a database: def serve_article(request, id): served_article
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I would like to count the length of a string with PHP. The string
For some reason, after submitting a string like this Jack’s Spindle from a text

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.