Tagged Questions
The questionmark tag has no wiki summary.
10
votes
8answers
405 views
What is the name of the question mark in my URL?
http://example.com/foo.aspx?foo=bar
I'm refactoring and need to name the constant which will hold only the question mark character of this string. I'm not sure what best to name the variable, as ...
8
votes
2answers
483 views
Google app engine datastore string encoding problem
Hello
I'm using Google App Engine for a project I'm doing and I need to store some Strings. I'm using Java and JDOHelper.getPersistenceManagerFactory("transactions-optional")
While debugging it on my ...
4
votes
6answers
220 views
What does “?”, used after JavaScript filename, means?
For example, having:
<script type="text/javascript"
src="http://somedomain.com/js/somejs.js?14">
</script>
So what does "?14" means here?
3
votes
5answers
87 views
What does a questionmark (?) mean in a function declaration in C# [closed]
Possible Duplicate:
What does “DateTime?” mean in C#?
What does the ? mean after a type?
I had a function declaration including a questionmark after the datatype like:
...
2
votes
1answer
726 views
XSLT encoding problem, questionmarks in result
I'm trying to run an XSLT transformation, but characters like ëöï are replaced by a literal '?' in the output (I checked with an hex editor). The source file has the correct characters, and the ...
1
vote
4answers
223 views
Android: Set button text to question mark
I'm sure this is very easy to solve:
I need to set a button's text to just "?". I'm happy to do it via Java, but would rather do it via the XML. Is it possible? I've tried android:text="?" and ...
1
vote
4answers
380 views
Get content after question mark in PHP if statement
I am setting up a separate theme page for printable content. To tell the browser to use the print theme I'm using a mark ?print after the URL. So how does one get that content?
Something link
...
1
vote
3answers
133 views
Advice on URL structure: Forced to have a question mark in the URL
I am building a php website on an IIS server. I don't have access to the server and the admin won't install any url_rewrite modules ... so i am forced to have a question mark in my urls.
I want to ...
1
vote
4answers
286 views
Redirecting via .htaccess to .php with arguments in current folder
I'm trying to redirect something like foo/bar to ?foo=bar, so I can do www.mydomain.com/hey/foo/bar to www.mydomain.com/hey/?foo=bar, but I can't seem to get the syntax right. I tried the following:
...
1
vote
2answers
817 views
Sqlite: How to insert variable into string in prepared statement
I'm using a Java wrapper for accessing Sqlite but I assume this is a general Sqlite question.
String stmt = "SELECT foo FROM bah WHERE foo='%/?/%';
PreparedStatement a = ...
1
vote
3answers
361 views
What does the ? mean after a type? [closed]
Possible Duplicate:
a curious c# syntax
So I've seen some code around and a few of them use a ? after the type, like this:
private Point? loc = null;
So I'm wondering if Point? is ...
1
vote
1answer
550 views
how to use urlencode to handle two question marks in url in php
I appreciate for your time. I have searched a lot and tried to understand and use urlencode, but the problem can't be solved.
The code is:
<?php print ...
0
votes
1answer
73 views
In Xcode 4 version control, what does it mean when there is a question mark near a file that you have just added to the project?
How do you change it to ensure that the file is properly added?
I copied some files into my project folder. Then in Xcode I clicked on a group and chose "Add files to project...". Then I selected ...
0
votes
1answer
27 views
Jquery spams timestamp when typing a question mark?
I have an application where you post messages to the system. Whenever you just type question marks, the message gets turned into:
jQuery16104892938028
4552626_132040318254
1
I have no idea how to ...
0
votes
2answers
378 views
update_attributes NoMethodError when form value contains question mark in rails 3.1
When I try and update a field with a value containing a '?', update_attributes returns:
**NoMethodError**
You have a nil object when you didn't expect it!
You might have expected an instance of ...
0
votes
1answer
174 views
Safari display question marks
I have a website that displays fine with IE and Firefox.
But the menus are replaced by question marks when using Safari (I have been told, not having Safari on my PC).
Here is the home page (get rid ...
0
votes
3answers
334 views
How do I match the question mark character in a Django URL?
In my Django application, I have a URL I would like to match which looks a little like this:
/mydjangoapp/?parameter1=hello¶meter2=world
The problem here is the '?' character being a ...
0
votes
2answers
349 views
Special method in ruby (question mark)
How do you define a method of verification?
The example: include? even? odd?
>> 2.odd?
=> false
>> 6.even?
=> true
>>
0
votes
2answers
181 views
How to avoid ODBC parameterization for the question mark character ? within literals and comments?
I'm running into an issue where I have question mark characters '?' within my SQL scripts inside comments is causing problems. When I run these statements through an ODBC connection using the Visual ...
0
votes
3answers
237 views
Question mark in regular expressions in Javascript (weird behaviour)
<html><body><script>
var matches = /(\w+)(\s*(\w+))?/.exec("aaa");
alert(matches.length);
alert(typeof(matches[3]));
</script></body><html>
I'm really new to ...