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


Similar Messages:

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

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

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

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

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

Data Controls :: Disable Or Hide DropDownList Control Based On Condition In GridView

Dec 18, 2013

I am using a dropdownlist in a gridview which contains 3 valuesappleorangebanana

apple will be displayed as default valueif i select orange and banana the dropdownlist list should be disable or hidden but the selected value must be displayed

protected void btnsubmit_Click(object sender, EventArgs e)
{
foreach (GridViewRow gr in GridView1.Rows)
{

[Code].....

View 1 Replies

AJAX :: Tabcontainer Doesn't Show Tabs In Proper Style?

Jan 12, 2011

I used ajax tabcontainer and 7 tabs in it.It works fine on my locahost but when i deployed it on server it doesn't show tabs background..it shows only labels as tab names.

View 1 Replies

Forms Data Controls :: Hide Gridview Row Based On Condition?

May 10, 2010

I have one asp.net gridivew where i have written some code and bind it.. itz working fine now my requirment is when ever any gridview row which conatin column 3rd zero(0) i want to hide tht row ..

View 2 Replies

Web Forms :: Hide Specific Row Cell From GridView Based On Some Condition

Aug 3, 2012

I have a gridview which displays a list of submittted applications with a column that contains an edit link.

<asp:TemplateField HeaderText="Status">
<ItemTemplate>
<asp:LinkButton ID="lnkBtnEdit" runat="server" CommandArgument = '<%# Eval("appID")%>' Text = "Edit" OnClick = "editApp" />
</ItemTemplate>
</asp:TemplateField>

I want to hide the link button if the status (value 1 or 0) of the form is set to 1. Here is the code I am trying to use.

Protected Sub gv1_RowDataBound(sender As Object, e As GridViewRowEventArgs)
If e.Row.RowType = DataControlRowType.DataRow Then
'get the cell cell value
Dim status As Integer

[code]....

I think my mistake lies in getting the status value (as it ouputs 0 for every application).

View 1 Replies

Hide A Column Of GridView Based On A Condition?

Feb 11, 2011

I want to hide a column of GridView based on a condition. How can I access the column in C# code?

if() // condition
{
// Disable code here. ?????
}

View 2 Replies

Forms Data Controls :: How To Show Or Hide A Template Field Within A Gridview Upon A Condition In C#

Sep 2, 2010

is there a way to show or hide a Template Field within a gridview upon a condition in C#?

View 2 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

Data Controls :: Hide Column In Repeater Based On Some Condition

Sep 14, 2013

My Repeater will display the data like below

Id  Name Mark1 Mark2 Mark3

1     aaa      50     30      20
2    bbb      50     30      30
3     ccc      50     30      20

if mark3 has all fields with 0 means i want to hide column mark3... How to do this....

View 1 Replies

AJAX :: How To Dynamically Add Tabs To TabContainer Control

May 7, 2015

Dynamically add Tab Pages to tab control in Web form using asp.net and c# ...

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

Data Controls :: Display And Hide Specific Columns Of DataGridView Based On Condition

Jan 29, 2013

I have a table dt_details which includes columns -  name, address, phone,emailid, website,remarks,paid.

In the datagrid i have to display full columns only if paid is yes and if paid is no only name & phoneno should display.How to do that ?

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

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

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

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

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

Web Forms :: AJAX TabContainer - Move To Next Tabs In Sequence

Nov 3, 2012

I am having a requirement where I am using Ajax Tab, I am having 3 tabs. If user select second or 3 rd tab I would like throw an alert saying do you wish to move if yes I would like to move to next tab if not I would like to stay in the current tab...

My sample script is as follows

<script type="text/Javascript>
function checkSave() {
sSave = window.confirm("You have some changes that have not been saved. Click OK to save now or CANCEL to continue without saving.");
if (sSave == true) {
var tabIndex = $find("TabContainer1"); //AdvOrBasicSearch is name of tabContainer

[Code] ....

View 1 Replies







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