C# - Show Or Hide A Button Based On User Action?

Mar 14, 2011

Well I have a web page asp.net(page1.aspx) amm user can choose two options A/B if user chooses a when he is in page2.aspx i want a javascript was execute

function(receive parameter)
{
}

But if he chose option B function never will be executed. I want to do, if user chooses A will see a asp button, but if he choose option b he is not going to be the button

View 2 Replies


Similar Messages:

User Controls :: Show Hide Specific Section Of Page Based On User Type Or Role

May 7, 2015

I have LOGIN PANEL for student, and I want to disable it in different page. And only the admin can enable and disable it. I dont know the logic behind here.

View 1 Replies

Web Forms :: Show And Hide Button Based On Results And Selection?

Oct 26, 2010

I have the following line on my aspx page..

[Code]....

My issue is, that i only need this to display when my datalist is displayed and has records.. every time else, it needs to be hidden ( Visible = false ) on page_load i have it set to

btnAddVideo.Visible = false;
btnAddVidCart.Visible = false;

Should i only be check then within my dropdown event? By default the page is displaying my datalist, so it should be hidden.. then you have a dropdown to make a selection, if you change it, then it should show ONLY if there are records to be displayed.

View 12 Replies

Show Button For Specific User And Hide It For Another?

Dec 28, 2010

how can I show button for specific user and hide it for another one based on security role in ASP.NET MVC 2.

For example if I have Create button in my view how to show it only for admin and hide it for any other user.

View 1 Replies

AJAX :: Hide Show Menu Based On UserID

Jan 1, 2014

I am making the asp.net application which consist of 6 form n based on user id pass want to show form e.g.: for admin all form appear for finance only 2 form appear when he enter his login id pass how can I?

View 1 Replies

How To Show / Hide Custom Menu Items As Based On Roles

Mar 12, 2010

I have a custom menu, which leverages the standard asp.net sitemap. It works well but some of my pages are dynamically generated by URL rewriter, so they don't sit in the sitemap XML file. At the moment I rolled a custom solution which shows/hides menu items via CSS class and a programmatic check of the role that the user is in. It works ok until I visit a dynamic page that doesn't exist in the sitemap file. I've tried the "roles" attribute in the sitemap file with security trimming but it isn't working because I have a custom menu.

Is there a way I could leverage the roles attribute in the sitemap file to show/hide menu items for my custom control below, even when some pages are not in the sitemap? My menu control is below...

<div class="menu">
<ul>
<asp:Repeater ID="rpt" runat="server" DataSourceID="smdsMenuPrimary"
EnableViewState="False">
<ItemTemplate>
<li class="<%#GetDisplayClass((SiteMapNode)Container.DataItem)%>"><a href='<%# ((SiteMapNode)Container.DataItem).Url %>'><%# ((SiteMapNode)Container.DataItem).Title %></a></li>
</ItemTemplate>
</asp:Repeater>
</ul>

View 1 Replies

Web Forms :: Hide Show Fields In MS Reports Based On Condition?

May 22, 2012

i have passed a paramater to the report

if param="Y" then i want to display field2 else field 3

i tried that in expression as

=IIF(paramater!state.value="Y" , fields!add1.value,feilds!add2.value)

but i am not getting

View 1 Replies

Web Forms :: How To Show Hide Label Based On DropDownList Selection

Mar 20, 2013

I have a label , textbox ,and dropdownlist,in dropdown i have two items Accepted and Not Acceptedif i choose Not accepted it visible the label and textbox in vb.net.

View 1 Replies

MVC :: Hide A Button Based On A Value?

Mar 10, 2010

I need to hide a button on the view based on if TempData["SearchResults"] exists how can i accomplish this.

I have a search page and details page.

When i get the search results as list of rows in a table i click on the row to view the detials of the search result which gets displayed on another view , at tht instance i set the TempData["SearchResults"] with values which i need to repopulate when i navigate bck from detail page.

I need to hide back to search button on details page based on if( TempData["SearchResults"] exists something like if TempData["SearchResults"] == Null then Hide back button). How can i do this?

View 5 Replies

Forms Data Controls :: How To Hide/show Columns Based On The Dropdownlist Value

Jul 16, 2010

I have an emergency request that I need to sort it out very quickly as I did not notice it early :(.

I have a dropdownlist, the contnet in the gridview (sqldatasource connection) changes based on the value the user slects, say I have play1, play2 from the dropdownlist, I would like to show column1, column2 and column3 with user selects play1; show column4, column5, and clomn6 when use selects play2; the datatable actually includes all 6 columns.

I understand that I need to use something like RowCreated event, and I need to set up condition based on the dropdownlist value, but I dont really know how to.

View 3 Replies

Forms Data Controls :: Show / Hide Detailviews Based On Querystring

Oct 22, 2010

I have a form that has 2 querystring variables ID and FormID being passed to the page. Also on this page I have 2 different DataSources that outputs to a Detailview depending if the FormID is 1 or 2. I would like to be able to add a show/Hide command to Show only the DetailView that is selected and Hide the other. I have researched and found hat people are using a Multiview code, but I have not been able to find a working example code.

View 2 Replies

Show/hide  the (gvChild) Based On Some Condition In Rowdatabound Event Of The GvParent?

Jun 15, 2010

I have following criteria in my gridview control.I have a parent gridview control (gvParent) which has 8columns in it. and i have gvchild within gvParent.And i want to show/hide the (gvChild) based on some condition in rowdatabound event of the gvParent. i need to display the child grid at the end of each row in gvParent .Also Child Grid should start from 3 rd column of the gvParent and should end at 8th column.How to bring the child grid after each row ?

View 2 Replies

AJAX :: Show Hide HTML DIV Based On ComboBox Selection Using JQuery?

Apr 10, 2014

i have 4 comboxes (com1, com2, com3,com4) and 4 tables (tab1, tab2, tab3, tab4)com1 and tab 1 have master table relationships i.e when in com1 the name is entered tab 1 shows the result of that entry. the same is for the rest comboxes and tables.

Now what i am trying to do is when an user clickes on com1 and types the name of the employee tab2 tab 3 and tab 4 should be hidden. if com2 is clicked tab1 and tab3, ta4 shoud be hidden.etc

Currenty i am using this code which i do not like. Is there any easy and short way to do hide an show.

this is the code i am using

<script type="text/javascript">
$("#com1").on('click', function () {
$("#div1").fadeIn();

[Code]....

View 1 Replies

Data Controls :: Show Hide CommandButton Based On Condition In GridView

Nov 22, 2015

I am adding two button in gridview here I populate gridview on page load this work fine problem is that  when my status value are  check  or peending then my two button are show.

But I want when my status value are check then check  button  should be hide

And view button show in which row where staus value  are check But when my status value are peending here show check button and view button should be hide. I want follwing type .

Gridview Like that on page load

id name class status

1 imran 5 check

Hide Check button
View Button Show

2 ali 8 pending

Check  Button Show
View Button Hide

3 farooq 7 check

Hide Check button
View Button Show

How to do it following my code.

Default.Aspx.cs
protected void Button1_Click(object sender, EventArgs e)
{
populategridview();
}
public void populategridview()
{
string strConnString = "Data Source=.SQLEXPRESS;Integrated Security=SSPI;

[Code] .....

View 1 Replies

AJAX :: Show Hide Image Control On Page Based On Database Value

Dec 14, 2013

Below is House_info table

id name behcode

1 Neda 1111
2 Jack 2222
3 Sara 3333

House_p table

id Product behcode

1 sofa 1111
2 iron 1111
3 scarf 2222

and below is SP

ALTER procedure [dbo].[storeinfo1]
@Behcode nvarchar(10)
as
begin
select behcode,Name
,(select Behcode from House_p where BehCode=@Behcode) behcodeP
from House_Info
where BehCode=@Behcode
end

I have image=>Productimage  in product.aspx page I want if in House_p table there be my users behcode it do Productimage.visible=true 

i.e

In House_info table exist user Sara with behcode=3333  her behcode  isn't in House_p table so I want in product.aspx page ProductImage.visible=true

How I can do it?

View 1 Replies

Web Forms :: Hide Show Tabs Of TabContainer Control Based On Condition

May 13, 2012

I have a tab container with 10 tabs each with unique id on a hyperlink click i need to make some tabs visible true false,in hyperlink I am passing a query string param

if the param="Y" param = Request.QueryString["type"]; 
if  (param == "Y") { 
for (int tc = 0; tc <= TabContainer1.Tabs.Count - 1; tc++) { 
if (TabContainer1.Tabs[tc].ID == "Y") {
TabContainer1.Tabs[tc].Visible = true;                           
} else {                               
TabContainer1.Tabs[tc].Visible = false:
} } }

I have the above condition but on this click the tab container is not at all visible but without any parameter passing the tab container is visible.

View 1 Replies

MVC :: Calling Action Methods Based On Specific Button Click?

Jun 29, 2010

In the create aspx page i have 2 buttons. One for creating the new customer and another one for searching the customer based on the customer last name. Now the issue is when i try to search the customer based on the last name the page is calling the create action method only, not the search action method. how to call a spicific action method from the buttons. I know it can be done using ajax post back but what i am looking at is to achive this in the normal post back itself.

View 3 Replies

Forms Data Controls :: Show / Hide Textbox In Formview Based On A Dropdown?

Sep 29, 2010

I have a textbox in a formview as well as a dropdown. When I select a value in the dropdown, the textbox should be made visible or invisible based on the value I select.

View 3 Replies

Web Forms :: Show / Hide Submenu Based On Sql Tables With Existing Sitemap Method?

Feb 25, 2011

I am using asp.net2.0 , C#. I am binding menu control with sitemap to display menus and submenues. Which also restrict access and display of menu or submenu based on user's roles. I want to know Is it Possible to show/ Hide submenu based on sql tables with existing sitemap method

View 1 Replies

Data Controls :: Show / Hide TextBox Based On Value Of DropDownList Inside GridView?

May 7, 2015

This is my Code

My query is if i select Other in dropdownlist i want visible textbox..

how to i do it..

<asp:GridView ID="TypeFruit" runat="server">
<Columns>
<asp:TemplateField HeaderText="Type" >
<ItemTemplate>
<asp:DropDownList ID="ddlfruit" runat="server" >
<asp:ListItem Value="0">Select</asp:ListItem>
<asp:ListItem Value="1">Fruit</asp:ListItem>
<asp:ListItem Value="2">Other</asp:ListItem>
</asp:DropDownList>
<asp:TextBox ID="TxtOther" runat="server" Visible="false"></asp:TextBox>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView> 

View 1 Replies

Data Controls :: Show Hide HyperLink Control In DataList Based On Session Value

May 7, 2015

Actually I have a datalist in which I am binding product name and product description and there is a hyperlink.

I am binding datalist in page load and checking that user is login or not using session.

if user is login then hyperlink text should be view more

else

hyperlink text should be login to view 

The code I have written is working fine but when user is logged in then Only one products hyperlink text changing. I want change it to all hyperlink text to view more when user login

View 1 Replies

Forms Data Controls :: Show - Hide Template Headertext In Gridview Based On Requirement

Mar 30, 2010

I am using VS2008.I am binding dynamic datatable to gridview. I have few dropdowns and textboxes in gridview.
I have dropdownlist(ddlTrCodeNw_)in gridview foooter template. Based on the selection of Trcode value few controls will be enabled,disabled,visible,hide. in gridview.

<asp:GridView ID="gvAPPost" runat="server" Width="100%" ShowFooter="true"
AllowPaging="true" AutoGenerateColumns="false"
onrowcommand="gvAPPost_RowCommand"
onrowdatabound="gvAPPost_RowDataBound"
>
<Columns>
<asp:TemplateField HeaderText="Discount %" Visible="false">
<FooterTemplate>
<asp:TextBox ID="txtDiscountPerNw" runat="server" Width="40px" Enabled="false" Visible="false" ></asp:TextBox >
</FooterTemplate>
<ItemTemplate>
<asp:TextBox ID="txtDiscountPer" runat="server" Width="40px" Enabled="false" Visible="false"></asp:TextBox >
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
Intially I set TemplateField HeaderText also Visible="false".
so i have written the condition in ddlTrCodeNw_SelectedIndexChanged.
Now when
if(ddlTrCodeNw.SelectedValue=="24")
{
txtDepstNw.Enabled = true;
txtDepstIncNw.Enabled = true;
txtCrdtNw.Enabled = false;
txtCrdtIncNw.Enabled = false;
lblDiscTrcodeNw.Visible = true; // I want to show this TemplateField HeaderText also when i need.
}

I can I show TemplateField HeaderText also whenever i need.

View 3 Replies

Data Controls :: Show / Hide TextBox Based On Selected Value Of DropDownList Inside GridView

May 7, 2015

In my query i have 1 gridview..

In this gridview i have 1 dropdownlist and  1 textbox..

textbox is in visible=false state..

My question is after selecting dropdown list selected value i want visible textbox in gridview..

View 1 Replies

Data Controls :: Show Or Hide Image Control In GridView Based On Condition From Database

Dec 19, 2012

i am using template field display image based on condition in table field. i have field name  verify i used to store yes or no value if it is yes then display image else noting to display in gridview

View 1 Replies

Data Controls :: Dynamically Show Hide Label And HyperLink Based On Condition In Same Column Of GridView

May 7, 2015

I am checking string  and then bind category. If condition is false then i  need anchor tag in which i pass querystring to specific link.

<itemtemplate>
<asp:Literal runat="server" ID="litPrice" Text='<%#((String.IsNullOrEmpty(Eval("Price").ToString()) || Eval("Price").ToString()=="00/0.00" || Eval("Price").ToString()=="0/0.00") ? "<span font-family="arial"><a href="http://www.xyz.com/web/enquiries.asp?category="+ Eval("category")>Enquiry</a></span>" : Eval("Price"))%>' >
</asp:Literal>
</itemtemplate>

I am getting error. CS1010: Newline in constant

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved