0
votes
4answers
27 views
Get everything after the dash in a string in javascript
Hi,
What would be the cleanest way of doing this that would work in both IE and firefox.
My string looks like this: sometext-20202
Now the 'sometext' and the integer after the …
0
votes
2answers
26 views
How to get a date from MySql database to C# DateTime object?
I have a MySql database with a certain feild that contains a date.
How can I convert it to a C# DateTime object?
And how do I convert a C# DateTime object so I can insert it to t …
0
votes
2answers
25 views
How do I change the JAVA_HOME for ant?
I'm doing java work on a class server where I don't have root. Whenever I try to compile using ant, it points to the wrong directory (/usr/tomcat instead of /usr/tomcat/jre ).
On …
2
votes
2answers
24 views
What’s the performance difference between HttpModule and Global.aspx ??
I have made a web app where I am using a module which redirects without "www" urls (http://example.com/) to with "www" urls (http://www.example.com/). But as I am on shared hosting …
1
vote
0answers
9 views
How do i replace the cakephp password hashing algorithm?
I have an existing database I'm trying to put a cake app on top of. The old app used crypt() in perl to hash the passwords, I need to do the same in the PHP app.
Where is the corr …
0
votes
2answers
9 views
Memory management. Copy method
I use this code to copy and instance of my class
//Create the copy and pass it onto edit controller
PoolFacility *poolCopy = [self.thePoolFacility copy];
self.childController.th …
-1
votes
2answers
21 views
WPF Datagrid
I am using a WPF Datagrid as a UserControl in which i have two properties based on the value i get for these two properties I have to call a class to get the itemssource and bind t …
0
votes
1answer
17 views
Firefox bar to quickly find API docs
This question is related to this one
http://stackoverflow.com/questions/573072/tricks-to-google-for-desired-page-quickly
Firefox can do some magic and bring exactly the required p …
0
votes
1answer
51 views
How do I implement gmail login?
How do I implement site authentication using gmail, yahoo or facebook IDs (not OpenID login)?
PS: Using PHP.
1
vote
0answers
16 views
Archiving text messages (sms)
I want to archive the text messages on my WM phone to my PC, preferably as XML. Can I access them from a PC application, e.g. through RAPI? I have no experience in WM development, …
0
votes
1answer
15 views
I have a jquery autocomplete entry that I want to add a down arrow image inside of
I have a jQuery autocomplete entry that I want to make look more like a "combobox". I set it up so that when the user clicks into the entry it will blank out and do a blank query …
0
votes
1answer
15 views
ASP.NET Ajax: ‘PageMethods is undefined’ script error on production server (works on localhost)
In a javascript file I'm calling an ASP.NET Ajax PageMethod (ASP.NET 3.5), correctly defined in the page class a static method using the WebMethod attribute. This works on my devel …
1
vote
8answers
99 views
Tricks to Google for desired page quickly
I like to use Google to quickly locate API documentation. To get better results, I type some keywords that give desired results as top lines. For example:
JavaScript:
MDC Arra …
0
votes
1answer
14 views
dasBlog and using C# as category for tag cloud
Hi,
I am using dasBlog for my Blog and one of the categories I have is C#. Now when I click on this tag, it takes me to /CategoryView.aspx?category=C thus removing the hash. Doe …
0
votes
3answers
14 views
Is it possible to use SmtpClient.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory on Development Server?
I do not have access to an IIS development server -- only the production one. So, for my development, I have to use the ASP.NET Development Server thats built into Visual Studio. …