Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
7answers
33k views

100% Min Height CSS layout

What's the best way to make an element of 100% minimum height across a wide range of browsers ? In particular if you have a layout with a header and footer of fixed height how do you make the middle ...
10
votes
2answers
269 views

Why is var m = 6 + + + + + + + + 6; valid in c#?

Title is most of the question, what allows this to be valid code? Is there any benefit or trick that would allow me to utilize this?
9
votes
7answers
220 views

Why is using DIVs or spans tags “better” than using a table layout? [closed]

Possible Duplicate: Why not use tables for layout in HTML? Why is using markup with divs defining everything (container, header, content, etc) BETTER than using tables? I understand that ...
9
votes
7answers
816 views

Check if URL is a torrent in C# .NET

What's the best way for me to take url like: http://foobar.com/foo.torrent and check if that really is a torrent, not a html page or something else funny. Suggestions? Thank you :)
9
votes
4answers
9k views

How to check whether STL iterator points at anything?

I want to do something like this: std::vector<int>::iterator it; // /cut/ search for something in vector and point iterator at it. if(!it) //check whether found do_something(); But ...
8
votes
2answers
24k views

Producing valid XML with Java and UTF-8 encoding

I am using JAXP to generate and parse an XML document from which some fields are loaded from a database. Code to serialize the XML: DocumentBuilder builder = ...
7
votes
2answers
215 views

How to test if an address is readable in linux userspace app

For debugging purposes I need to test a pointer to see if it points to a valid readable page. Currently I am parsing /proc/[pid]/maps to see if the address is mapped ok, but this seems a bit ...
7
votes
8answers
4k views

Are self-closing tags valid in HTML5?

The w3c validator doesen't like self-closing tags (those that end with "\>"). Are they still valid in html5? Some examples would be: <br \> <img src="" \> <input type="text" ...
5
votes
2answers
108 views

Boost::asio what is this kind of strange coding style?

I am about to debug something within my boost asio socket communication. And found this piece of code inside of the asio library (found in boost/asio/impl/write.hpp line 169 (boost 1.47) ): switch ...
5
votes
1answer
530 views

VS2010 Disable T4 Template Validation

How do you disable T4 Template validation . VS2010 is validating my T4 Template just now on ever part that has '#' (the sharp character). error CS1040: Preprocessor directives must appear as the ...
5
votes
2answers
116 views

Does HTML and CSS needs to be valid before we apply JavaScript?

I was thinking about Web standards, and i was wondering if we need to have valid HTML and CSS before we apply JavaScript? Can anyone enlighten me on the relation between valid HTML, CSS and ...
4
votes
1answer
575 views

HTML5 block-quote with author

Hi I'm seeing a great number of different ways to implementat blockquote in html but it doesn't seem clear in its documentation how should I properly format a blockquote let's say of a famous quote ...
3
votes
1answer
114 views

How to make jQuery Mobile attributes XHTML-valid

I started using jQuery Mobile some time ago, and as those that know jQuery Mobile know, it uses it's own HTML attributes to give items a predefined role. Mostly divs. Some examples: <div ...
3
votes
4answers
2k views

XHTML Strict 1.0 - target=“_blank” not valid?

I just validated my actual XHTML Strict 1.0 doc with the w3c validator service.. and it says that, <ul id="socialnetwork"> <li><a href="http://www.twitter.com" ...
3
votes
3answers
395 views

Can a valid 13-digit ISBN have 'x as one of characters? [closed]

can a valid 13-digit ISBN have any character other then digit 0-9? i.e., can a valid 13-digit ISBN contain character 'X'?
2
votes
1answer
31 views

What are the valid values for a django URL field?

What are the valid values for a django URL field? Is it only for http URL resources or does it support a wider range. eg ssh, rsync, git etc. I tried putting what I considered to be valid Git URL ...
2
votes
3answers
57 views

How to return “valid” if the input type=“file” = file selected?

I use jquery and the jquery validate plugin for my form. If the input_17 has content length > 1, it is required to select a file input_1_67. That works. input_17: { required: ...
2
votes
1answer
91 views

check if stored procedure is valid

I have a stored procedure (sproc A) which is syntactically correct. So when I hit "run" on its create or alter statement, it is saved into the database. However, sproc A has a call to another stored ...
2
votes
4answers
120 views

Does a <tr> have to be inside a <tbody>

Does a table row (<tr>) have to be in a table body (<tbody>), if the table has a table body, or can it exist outside of the table body? <table> <tr> <td ...
2
votes
2answers
258 views

jQuery Validation add valid class to another element

Is there any equivalent of the errorPlacement for the validPlacement in jQueryValidation? My goal is to add the valid class to another element. Thanks.
2
votes
2answers
342 views

iPhone SDK: How to check for IP-Validity?

in my iphone app users can enter a specific ip-address/URL to connect to their own server and i'm trying to check the validity of the entered address. So if a user entered something like "1234" the ...
2
votes
1answer
305 views

Looking for a list of valid characters that can be sent in sms text messages

I've been working with an SMS aggregator's web api to send and receive text messages. Not all characters are valid, and when I attempt to send a message with, say, a hash mark # it fails. I need to ...
2
votes
1answer
107 views

asp.net mvc and valid xhtml?

For some reason an html helper is outputting this html which doesnt validate. the validator tells me There is no attribute "Length" <%= Html.CheckBox("Medicamentos", Model.Medicamentos) ...
1
vote
6answers
120 views

Fastest way to check if a String can be parsed to Double in Java

I know there's a million ways of doing this but what is the fastest? This should include scientific notation. NOTE: I'm not interested in converting the value to Double, i'm only interesting in ...
1
vote
6answers
89 views

JavaScript Detecting Valid Dates [closed]

Possible Duplicate: Detecting an “invalid date” Date instance in JavaScript I was using the following to detect a valid date: var text = $('#Date').val(); var date = ...
1
vote
5answers
135 views

Python check for valid email address?

Is there a good way to check a form input using regex to make sure it is a proper style email address? Been searching since last night and everybody that has answered peoples questions regarding this ...
1
vote
1answer
43 views

How to get rid of bogus _BLOCK_TYPE_IS_VALID assertion failure during delete?

When I built my visual C++project in debug mode, just with two lines of code TEnviron * fk = new TEnviron(); delete fk; it throws an assertion failure error _BLOCK_TYPE_IS_VALID from ...
1
vote
2answers
65 views

Regex is not a valid type or namespace C#

I'm trying to add this snippet to my code: public string Highlight(string InputTxt) { string Search_Str = txtSearch.Text.ToString(); // Setup the regular expression and add the Or operator. ...
1
vote
3answers
47 views

What is the best and fastest way to check if the image is valid in PHP?

What is the best and fastest way to check if the image is valid in PHP ? I need it to be able to check GIF, JPG as well as PNG images.
1
vote
2answers
888 views

Django Form doesn't accept selection as valid choice. Can't see why

i made a little form where I ask the user for some location (1st stage), then geocode the location and ask the user to confirm the location (2nd stage). Everything works fine, however, when I select a ...
1
vote
3answers
2k views

Attribute name not allowed on element div at this point

<!DOCTYPE html> <html> <head> <title>jGrowl</title> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <script ...
1
vote
2answers
105 views

Correct way to leave empty elements in xhtml?

I've been experimenting with xhtml and now I'm wondering that is there a valid/correct way to add empty elements. Short question, but here's the two ways I've been using: <div> </div> ...
1
vote
3answers
247 views

HTML valid way of tracking outbound links via Google Analytics?

I am using this, and I have it tracking an outbound link, but I want my page to be valid. This is the error I am getting: There is no "OnCick" attribute The HTML is: <p>View some of our ...
1
vote
2answers
1k views

How to check if the input string is a valid VB string?

We know that VB string start and end with double quotes " " So we have to use "" if we want " in VB string. I wonder if there is a regular expression pattern which will match VB string?. Thanks.
0
votes
1answer
19 views

Valid range of SQLite rowid?

I'm making a wrapper of SQLite C API. And I want to return rowid as integer type. To mark error case, I need a invalid value of the rowid. Is there invalid value of SQLite rowid? Or all values in ...
0
votes
1answer
31 views

“A valid provisioning profile for this executable was not found.” related

I use Xcode 4.2 Achive my new version and everthing going well.And I get the .ipa file and I it can be installed on the device before ios 5.0,but when I try to install on ios 5.0 I got "A valid ...
0
votes
1answer
242 views

App Domain: is not a valid domain

any idea why get this error when I insert my site name in App Domain box ,when ntrying to setup app ? I've tried inserting other domains and I get rhe same error message. Error App Domain: ...
0
votes
3answers
31 views

Are multiple angle brackets valid in HTML?

validator.w3.org considers the following valid HTML: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> ...
0
votes
1answer
153 views

How do you check for a valid session in Struts 2 jsp?

I have an include jsp on all my pages which includes js files, css files, etc. This include jsp also refers to the session with "". On the last page of my application, the action does a ...
0
votes
1answer
49 views

JSF form validation easy way to use custom text

I am using this to validate my form <h:message for="username" showDetail="false" showSummary="true"/> with required="true" but I get really ugly text because these cryptic ids are shown. Can I ...
0
votes
1answer
54 views

Parsing different language characters and accents into valid XML

I have a bunch of XML data with different language data, which has accents. Example:- <text content="vídeo..." /> or <text content="vidéo..." /> This data is coming from MySQL - I'm ...
0
votes
3answers
270 views

is URL valid or not [closed]

Possible Duplicate: what is the best way to check if a Url exists in PHP ?` I'm looking for a function that returns TRUE or FALSE in php, either the URL is valid or not. isValidURL($url); ...
0
votes
2answers
66 views

rijndael encryptor valid byte sizes

I have the following code: var symmetricKey = Rijndael.Create().CreateEncryptor(key, iv); key and iv are the same length, and they are byte arrays of length 32. In runtime, this snippet fails, ...
0
votes
1answer
650 views

ExtJS Datefield and change calling function

I am using ExtJS 3.3.1 and below is my code for a DateField. When the DateField is valid I would like it to call this function, however nothing is currently happening when I change the field. new ...
0
votes
0answers
223 views

dictionary of all valid words

You are given a dictionary of all valid words. You have the following 3 operations permitted on a word: delete a character, insert a character, replace a character. Now given two words - word1 and ...
0
votes
3answers
169 views

Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource

i have this script : <?php // remplacer par vos valeurs de connexion $host="*****"; $user="*****"; $pwd="******"; $base="*****"; $mysql_link = ...
0
votes
1answer
90 views

is_valid always False (Django)

I have the following form with dynamic fields: 1) In models.py I want to pass in a value to the form to query class InsertValuesForm(forms.Form): def __init__(self, idfield, *args, **kwargs): ...
0
votes
1answer
72 views

Sites that are “W3C Mark Up Validation” Certified?

I'm kind of confused with this... My Uni's club website policy says that sites have to be w3c markup validated (http://validator.w3.org/). However, when I test out random sites from the web they all ...
0
votes
3answers
90 views

why someone might use invalid html?

I found some typo(i think so) in code I'm supporting and posted it to local site like a funny example of invalid code. And then some person said me that sometimes this invalid usage is correct. Can ...
0
votes
5answers
146 views

Xhtml Strict Error, That I cannot figure out

This page is generated through a PHP script, and Here is what the error says: Line 14, Column 8: end tag for "tbody" which is not finished </tbody></table> Most likely, you ...

1 2