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 788957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T21:26:59+00:00 2026-05-14T21:26:59+00:00

<%@ Page Title= Language=C# MasterPageFile=~/Masterpages/main.Master AutoEventWireup=true Inherits=KPIGen.admin.Data_Parameter_List Codebehind=Data_Paramater_List.aspx.cs %> <%@ MasterType VirtualPath=~/Masterpages/main.Master %> <%@

  • 0
<%@ Page Title="" Language="C#" MasterPageFile="~/Masterpages/main.Master" AutoEventWireup="true" Inherits="KPIGen.admin.Data_Parameter_List" Codebehind="Data_Paramater_List.aspx.cs" %>
<%@ MasterType VirtualPath="~/Masterpages/main.Master" %>
<%@ OutputCache NoStore="true" Location="None" %>

<asp:Content ID="Content1" ContentPlaceHolderID="m" Runat="Server">
    <telerik:RadAjaxManagerProxy ID="ajaxmgr" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="kgDataParamList">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="kgDataParamList" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="btnSearch">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="kgDataParamList" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManagerProxy>    

    <asp:Button id="btnBackToMain" runat="server" Text="Go Back To Admin Main" OnClick="btnBackToMain_Click" CssClass="button" style="margin-top:10px;margin-bottom:10px;" />


    <asp:Panel ID="Panel2" runat="server" defaultbutton="btnSearch">
    <div class="formContainer">
        <div style="width:33%;float:left;">
            <IKS:DDL ID="ddlDepartment" runat="server"></IKS:DDL>
        </div>
        <div style="width:33%;float:left;">
            <IKS:DDL ID="ddlCategory" runat="server"></IKS:DDL>
        </div>
        <div style="width:33%;float:left;">
            <IKS:TXT ID="txtTitle" runat="server" MaxLength="200"></IKS:TXT> 
        </div>

        <div style="width:33%;float:left;">     
        <div class="buttonContainer">
            <asp:Button id="btnSearch" runat="server" OnClick="btnSearch_Click" CssClass="button" />
        </div>  
    </div>
    </asp:Panel>
    <div style="margin-top:10px;margin-left:auto;margin-right:auto;width:98%;">
       <IKS:KeyGrid ID="kgDataParamList" runat="server" OnItemDataBound="kgDataParamList_ItemDataBound" OnItemCommand="kgDataParamList_ItemCommand" AllowPaging="false">
            <MasterTableView CommandItemDisplay="TopAndBottom" >      
                <CommandItemTemplate>
                    <a href="javascript:OpenDetail(0)" >
                        <asp:Image ID="imgAddTemplate" runat="server" ImageUrl="~/images/icons/16/form_blue_add.png" />
                        <asp:Literal ID="ltAddTemplate" runat="server"></asp:Literal>
                    </a>

                    <asp:LinkButton ID="lnkBtnSaveSortOrder" runat="server" OnClick="lnkBtnSaveSortOrder_Click" style="margin-left:10px;">
                        <asp:Image ID="imgSaveSortOrder" runat="server" ImageUrl="~/images/icons/16/disk_blue.png" />
                        <asp:Literal ID="ltSaveSortOrder" runat="server"></asp:Literal>
                    </asp:LinkButton>
                </CommandItemTemplate>  
                <CommandItemStyle HorizontalAlign="Left" Height="24px" />
                <Columns>
                    <telerik:GridTemplateColumn UniqueName="sortOrder" HeaderStyle-HorizontalAlign="Center" ItemStyle-HorizontalAlign="Center" HeaderStyle-Width="10%">
                        <ItemTemplate>
                            <asp:HiddenField ID="hdndpid" runat="server" Value='<%# Eval("Id") %>' />
                        </ItemTemplate>
                    </telerik:GridTemplateColumn>
                    <telerik:GridBoundColumn UniqueName="category" DataField="Category.Description" HeaderStyle-Width="15%"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn UniqueName="department" DataField="Department.Description" HeaderStyle-Width="15%"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn UniqueName="title" DataField="Title" HeaderStyle-Width="50%"></telerik:GridBoundColumn>                
                    <telerik:GridTemplateColumn UniqueName="actions" HeaderStyle-HorizontalAlign="Center" ItemStyle-HorizontalAlign="Center" HeaderStyle-Width="10%">
                        <ItemTemplate>
                            <asp:HyperLink ID="hlEdit" runat="server"></asp:HyperLink>
                            &nbsp;&nbsp;&nbsp;&nbsp;
                            <asp:LinkButton ID="lnkDelete" runat="server" CommandName="Delete" CommandArgument='<%# Eval("Id") %>' OnClientClick="return lnkDelete_Click()"></asp:LinkButton>
                        </ItemTemplate>
                    </telerik:GridTemplateColumn>
                </Columns>
            </MasterTableView>
        </IKS:KeyGrid>       
    </div>

    <telerik:RadScriptBlock ID="scriptBlock" runat="server">
        <script type="text/javascript">
            function OpenDetail(id) {

                OpenPopup("Data_Param_Details.aspx?id=" + id);
            }

            function lnkDelete_Click() {
                return confirm('<%= Config.Label.Get("LABEL_DELETE_CONFIRM") %>');
            }
        </script>     
    </telerik:RadScriptBlock>     
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="o" Runat="Server">
</asp:Content>
  • 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-14T21:27:00+00:00Added an answer on May 14, 2026 at 9:27 pm

    You haven’t specified the “Text” property…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 489k
  • Answers 489k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Hope you're still looking at this question. Here's your answer:… May 16, 2026 at 9:00 am
  • Editorial Team
    Editorial Team added an answer Here are the questions to ask: Does your delegate respond… May 16, 2026 at 9:00 am
  • Editorial Team
    Editorial Team added an answer The Dropbox API for iPhone includes a complete example. What… May 16, 2026 at 9:00 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

The form is defined as: <%@ Page Language=C# MasterPageFile=~/MasterPage1.Master AutoEventWireup=true CodeBehind=Search.aspx.cs Inherits=Invoices.Search Title=Search Page
Trying to create a simple form: <%@ Page Language=C# AutoEventWireup=true CodeBehind=register.aspx.cs Inherits=AlphaPack._Default MasterPageFile=MasterPages/Main.master title=Hi
On the base.master: <%@ Master Language=C# AutoEventWireup=true CodeBehind=Base.master.cs Inherits=WebApplicationControlTest.Base %> <!DOCTYPE html PUBLIC -//W3C//DTD
the function private void SetUpMasterPage(){ this.MasterPageFile = ~/MasterPages/NestedMasterPageTest2.Master; } is called on the OnPreInit...
I'm writing my first ASP.NET web application containing Master Pages. However, even though I
I should be sleeping but this is really bugging me. I can't get a
This is weird. I added a brand new Web Application project to my solution
I'm attempting to create themeing system for my asp.net mvc application. I was able
I saw in a lot of AjaxControlToolkit.resources.dll for different languages, even mine (Russian) in

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.