conditional

Conditional if/then for gt: in jQuery

How do you say : if there are more than 2 .quick_fact then My attempt: if $(".quick_fact:gt(2)") { } Which evidently is always true. ...

Conditionally check two urls based on "Request.QueryString"

I have a page which will have these urls, http://localhost:1218/Order-AUG17/Forms/Order.aspx?ContactName=HajaMubeen and http://localhost:1218/Order-AUG17/Forms/Order.aspx and in my page load i have checked this, if (Request.QueryString["ContactName"] != "") //My logic else //My logic But this if condition fails for both the ...

XLINQ - Is it possible to have conditionals within a query?

In trying to teach myself ASP.NET and OO design in general, I decided to make a simple web-based game. It's a rudimentary role-playing game, where the player can create a character of a certain profession. These professions give the character certain kinds of attacks, and some of these abilities have status effects (poison on enemies, ...

using IF in a SQL Server View

Hello, I have a view in SQL server that translates from one schema version to another. Currently, the view looks like this: SELECT newValue AS oldValue FROM dbo.MyTable The trouble is that, in the new schema, newValue is not nullable, so we set it to -1 to denote empty fields, but in the old schema, it was nullable. How can I do s...

Will a C conditional always return 1 or 0?

Do C conditional statements always return [1 or 0], or do they return [0 or 'something other than zero']. I ask because: pseudo code - foo(address, shouldSend): register >>= 1 register <<= 1 // to clear bit in first position register |= shouldSend // to signal whether it should send or not the problem occurs if somebody ...

Python efficiency of and vs multiple ifs

Is there an efficiency difference between using and in an if statement and using multiple if statements? In other words, is something like if expr1 == expr2 and expr3==expr4: dostuff() different from an efficiency standpoint then: if expr1 == expr2: if expr3 == expr4: dostuff() My very basic testing does not reveal a diffe...

Joomla conditional pages and menus

I'm trying to make a "Chapter selector" for my organization's website. I want to be able to select, say, the "Bay Area chapter" and have the site display articles and events for the Bay Area chapter (while keeping the chapter-independent parts of the site the same). How do I accomplish this? ...

SQL Server, How to DROP COLUMN if condition is satisfied?

Hello all! I have been trawling google for answers to this but no luck. Any help would be great! I have a SQL table: tblFeedback. It stores answers to feedback questions. The Questions are held in a different table: tblQuestions. The questions on the feedback form can be changed via a user interface, therefore when the user edits the q...

Apply CSS rules if browser is IE

Possible Duplicate: How do I do IE conditionals in CSS? How can I apply the rules below to IE only? .abc { float:left; height:0; margin:0 10px; width:0; /*Apply these rules for IE only*/ position:absolute; left:30; top:-10; /*Apply these rules for IE only*/ } ...

SQL UNION with conditions and recursive

Hi, i'm having problems with 2 query for my DB class. I have one table "clients" with this columns: name | id | date | points | REFERRAL --------------------------------------------- daniel | 123456 | 01-01-01 | 50 | 321321 jack | 321321 | 01-01-01 | 30 | 555555 Note that daniel was refered by jack 1) With the ID...

How to create an effect higher up in the view than the logic that determines it?

I have a simple if statement in my view that returns x = 0 or 1. Based on this simple result, I want to change the styling of the div that contains the entire section. <div> conditional that returns x=1 vs x=0 (and a few displayed items) based on this loop, restyle the div </div> Let's say, if x = 1, I want to make background-colo...

Bash Compound Conditional, With Wildcards and File Existence Check

I've mastered the basics of Bash compound conditionals and have read a few different ways to check for file existence of a wildcard file, but this one is eluding me, so I figured I'd ask for help... I need to: 1.) Check if some file matching a pattern exists AND 2.) Check that text in a different file exists. I know there's lots of way...

Check number of list items and columnize if condition exists

Example page: http://vincent-massaro.com/columns/columns.html On this page, there are two ordered lists, one with four items, and one with eight. I need to write a condition that checks how many list items are in each ordered list, and if it's more than four, split them into columns; if there are less than four, don't split into columns...

ActionScript Math.abs() Conditional Not Working

i have a number variable, vx, that is changing with an enter frame event. in the enter frame function i have the following code: if (Math.abs(vx) <= 0.05); { trace(Math.abs(vx)); } immediately, it's starts outputting numbers that are well above 0.05: 12.544444075226783 12.418999634474515 12.29480963812977 12.17186154174...

Ant: compile classes depending on property

I'm trying to get Ant to compile only parts of my project depending on a property (module) I set in the properties file. This is my first "real" interaction with ant so please bear with me :). I don't want to create multiple targets because the only thing that differs between modules in the build process is the number of classes that ar...

Style Question: if block in or around function?

Let's say that I have a function that should only execute if some constant is defined. which of the following would be better option 1: wrap all the function calls in an if block: if(defined('FOO_BAR_ENABLED')) { foobar(); } I figure this way the intent is more clear, but it requires checking the constant every time the function i...

Exposing SQL fired when LINQ executes

Morning all. Just a quick one for you - where can I find the SQL that is executed when a LINQ statement fires? I have the following code that works a treat, var r = (from p in getproductweightsbuyer.tblWeights where p.MemberId == memberid && p.LocationId == locationid ...

wordpress category conditional on attachment page

How do I check the category on the image.php theme file in Wordpress? I tried in_category('categoryname') but it did not work. I want to use it outside of the loop. (Btw, the function also did not work inside of the loop...) I need this to show banners according to the categories of the post. I guess the problem is that the attachment i...

Conditional Import in LaTeX?

Hi everybody! I'm going to be taking a ton of lecture notes, and then compiling them into LaTeX so that I can have excellent documents for future me to look over. I'm trying to organize things so that I can have a bunch of little documents containing the notes from a lecture, and then compile them at the end of the semester into one la...

php form conditional checkboxes

I have made a php form that is submitted by email. I am trying to make conditional check boxes so that if one specific check box is selected two others cannot be selected and if one or two of those two check boxes are selected the first one cannot. My code looks like this <p>Ribeye Steak <input type="checkbox" name="Ribeye steak" value=...