Web Forms :: Using Value From SqlDataSource To Show / Hide Element?
Oct 21, 2010
I am in the process of re-developing my website into ASP.NET from a product called LogiXML. My background is in front end design using XHTML, CSS and Javascript with a good understanding of SQL so this is a HUGE leap for me.
In one of my Views I have created an asp data source to count the number of scheduled meetings:
<asp:SqlDataSource
ID="CountRS"
runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString
%>"
SelectCommand="
SELECT count(*) as countRS
FROM WebMeeting_Calendar
WHERE MeetingDate > getdate()
and MeetingType = 2
">
</asp:SqlDataSource>
Next, I created an asp panel where I wanted to control the "Visible" element by the value returned in the data source but even when using a simple 1 = 0 (to return False) is not working for me.... Basically, if the count of meetings is zero, I don't want the panel to show.
<asp:Panel
ID="Panel1"
runat="server" Visible="<%# 1 = 0
%>"
>
</asp:Panel>
View 1 Replies
Similar Messages:
Jan 17, 2011
I have div in aspx page with the runat="server" attribute. How can I hide this element in javascript?
<div id="content" runat="server">
View 1 Replies
Jan 8, 2010
I am trying to display elements in a web page using <li>. The structure of the page is as follows
<ul>
<li> (How to hide its visibility if this has no child elements)
<ul>
<li> item 1</li>
<li> item 2</li>
<li> item 3</li>
</ul>
</li>
</ul>
My question is if the li element has no child items how do I hide it. I need to do this dynamically. If I find that I have no records to display as <li> item </li>....I should be able to hide the parent <li>. One soultion is make the <li id="something" runat=server>
if the child elements are not be shown I tried doing childelement.parent.Visible = false.
View 1 Replies
Jan 5, 2010
I know how to use a simple If statement wrapped in the <%# tags to hide something, but I don't know how to do it in a repeater when I need to access Container.DataItem, as in I need the dataItem currently being 'repeated'
eg
if (CurrentValidationMessage.Link != "")
{
show a hyperlink
}
Markup:
<asp:Repeater ID="repValidationResults" runat="server">
<HeaderTemplate>
</HeaderTemplate>
<ItemTemplate>
<a href='<%# ((MttImportValidationMessage)Container.DataItem).EditLink %>'> Link to erroneous Milestone </a>
<%# ((MttImportValidationMessage)Container.DataItem).Message %>
<br />
</ItemTemplate>
</asp:Repeater>
View 2 Replies
Apr 4, 2011
the template of my website looks quite good when printed, so i have no separate print css.
However, there is one element at the top which is not needed when printed, and about 2 inches high, so that's kind of a waste at the top of the printed page (which imho distracts the user from the actual content)
So, what i want to accomplish, is 'hide' that element (div) at the top of the page when a user prints the page.
But so far the only solution i've seen is top create a separate css document which then will be used when the user will print my page. That sounds good, but do i now have to maintain 2 different stylesheets with exact the same content (besides that one div)?
Or is it possible to sort of override the standard stylesheet in the print stylesheet? (so i only have to define the exception for that one div in my print stylesheet?)
View 2 Replies
Oct 4, 2010
I am trying to send the output value of a sqldatasource to a textbox.Is there a way I can grab the sqldatasource select value?
Here is my select command:
Dim com As SqlCommand =
New SqlCommand("SELECT TOP (1) ProjectName FROM aspnet_starterkits_Projects ORDER BY ProjectName
DESC")
View 13 Replies
Aug 10, 2010
[Code]....
show DataList Item Index when using SqlDataSource?
View 4 Replies
Jul 15, 2010
I want to hide or show a wizard step. Based on the inputs on the prvious page. For example If some one choose "4", the step 4 should be visible. else Step 4 should be hidden. I tried something like this
[Code]....
View 2 Replies
Jan 7, 2011
I am using the standard template for web form with login and menu..
I would like to disable the menu when u enter the page (done this by visable = false). but after a user have logged in, i want it to be shown..
How do i get a hold on the navigation menu when a user login?
View 7 Replies
Apr 22, 2010
I want to make a table visible when a checkbox is ticked and invisible when unchecked, any suggestions?At the moment I have a webform with 1 checkbox and my table which I would like to show/hide.
View 13 Replies
Oct 13, 2010
what is the best way to show/hide controls in .net?
I have a page with many show/hide depending on the control value.
eg. radio button list rbl (dynamically generated from the database values)
based on the radio button list value,will need to show/hide the other controls.
if the value is 1, will need to show or hide dropdownlist1.
if the value is 2, will need to show or hide dropdownlist2.
I tried using the javascript with rbl.Attributes.Add("onChange","return toggleDropdown();")
then in my javascript function i will show/hide the control.
However when I toggle the dropdown for the second time, it became very slow. The first time is okay.
I have also tried using ScriptManager and UpdatePanel (putting the controls inside the UpdatePanel), but it is also very slow when toggling dropdown for the second time onwards, causing the page to hang.
View 4 Replies
May 13, 2013
I have a page with a label and a textbox with two button edit and update. when the user clicks on edit the labels get hidden and text box appears. And when he clicks on update the textbox disappears and label appears I have achieved making the text box disappear and label appear but when I click on edit the textbox is not appearingĀ ....
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Institute : System.Web.UI.Page {
[Code] ....
View 1 Replies
Nov 24, 2010
I'm trying to show/hide panels in a masterpage depending on what page the user is on.
I was trying this..
[Code]....
But it didnt work.
View 1 Replies
Mar 12, 2010
Basically I have a dropdownlist (ddlSystem) and an AJAX update panel. Inside the update panel I have an asp:GridView (gvSystemSpecs) and an asp:Image (imgLoad).
For triggers on the update panel I have:
[Code]....
When the user changes ddlSystem it makes a service call to pull back a bunch of data and populate the gridview.
I want to be able to show a loading image (imgLoad) when ddlSystem is changed. Once the function to pull data and populate the gridview is complete I need to hide the loading image.
I think I'll need to use some JavaScript, but what ever I try doesn't work and I don't know if the update panel has anything to do with it...
View 2 Replies
Mar 10, 2011
I am using a ListView to display a list of Products. My DB has a field named productImage. What I want to do is show this row if there is a picture associated with the product, Hide this row is there is no picture associated with the product.So on the Listview_ItemCreated Event I have this:
[Code]...
View 7 Replies
Jun 7, 2010
i placed 2 user controls UC1 and UC2 in main.aspx page. i need to show or hide some controls in UC2 from the button in UC1 how?
View 5 Replies
Jun 1, 2010
When I print
[Code]....
[Code]....
View 5 Replies
Jun 29, 2010
I have 3 linkbuttons in a footer-template and want to be able to hide/show one of them at will. How to do so?
View 8 Replies
May 7, 2015
How to visible Panel on dropdown selected value with out Reload page...
View 1 Replies
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
Nov 16, 2010
New users can register on my site by completing a basic form that has the create user wizard control with some additional information i am collecting using a CheckBox List. They can then log in to the site and and view "MypProfilePage.aspx" where I display the information with the CheckBoxList boxes already ticked based their selections which they can update. My problem is I have two levels of User and each one has a different registration form.
Registration Form A
Has 20 Items in the CheckBox List
Registration Form B
Has 10 items in the CheckBox List
On the Profile Page, I just want to show the CheckBox which is relevant to the Registration form A or B and with selections by the registered user. So therefore the User who registered on B will not be able to see the selections checkbox list for A.
View 6 Replies
Oct 1, 2010
We have a dynamic sitemap and all nodes in the sitemap display a breadcrumb. Is it possible to have the breadcrumb still showing, but make the link in the sitemap invisible or non-clickable? Reason for this is that... we dont want users to select some pages from the sitemap (becasue they need to conduct a search first to populate a datagrid) and clicking on the link will only take them to an empty page. I tried just removing the url, or having a blank title, but that didn't work.
View 14 Replies
Feb 14, 2011
I basically need some items in a grid however each item contains subitems so I need a +/- type button to show/hide them. Is there a control to do this or would it be easier to simply put them in a CSS table and use jquery or something similar to control the hide/show of subitems?
View 1 Replies
Nov 23, 2010
Is there a way to show/hide (visible = true/false) a textbox and/or dropdownlist at PageLoad (or other Page cycle) from codebehind (I would like to check for some permission regarding current user and show/hide some controls from aspx page) ?
View 2 Replies
Jul 22, 2010
Protected Sub SQLDShowActionRef_Selected(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.SqlDataSourceStatusEventArgs) Handles SQLDShowActionRef.Selected
View 4 Replies