Our team working on flash/Asp.net shopping cart projects
In our projects we need to get previous flash file data.
After two or three form submission the first page flash file data are missing.
How can we maintain the state of flash file data?
If any idea please help our team to do the task
I cannot use strtolower as it affects all char. Should I use some sort of regular expression ?
I'm getting a string which is a product code, I want to use this product code as a search key in a different palce with the first letter made lowercase.
Hi
I use parse_url() to get the path of a url but i want to remove the first slash & the last if it's exists.
Example:
"/posts/funny-dog/" -> "posts/funny-dog"
"/" -> "" // Because http://www.google.com/ path is a slash
"/categories/politic" -> "categories/politics"
Thanks
I've just uploaded my first app on the market. It all went and looks well. I tried a few keywords to search for it, words that I also have in my description AND promo text, but some words don't find my app, some do.
How does the keyword strategy work for an app on the market, I couldn't find no documentation on it.
I used Collections.sort(playersList); to sort a list. So, I think playersList is sorted now. But how can I get the first element of the list? playersList[0] does not work.
I want a version of strreplace() that only replaces the first match in the target string. Is there an easy solution to this, or do I need a hacky solution?
After the boot loader hands execution over to the kernel, what happens? I know assembler, so what are the first few executions that a kernel must make or is there a C function that does this? What is the startup sequence before the kernel can execute an arbitrary binary?
I'm using an MVC framework to develop a web site, I've to care about the design in the sense of look and feel (views) and the code (models, controllers).
I don't know what is the best way to proceed:
code and design iteratively by small chunks?
design first ?
you've got the point
I have developed an application using .Net Compact framework 3.5 that runs on a thouch enabled device with WinCE 5.0.
I want the cursor to be on the first textbox when the page is launched.
I tried using
textBoxName.Focus();
textBoxName.Capture = true;
textBoxName.tabIndex = 0;
still couldn't bring the cursor to the control
thanks
What's your first reaction when SQA shoots a bug/issue to you with short description?
Do you have any rules for SQA's report at your company?
Got any test case document or testing procedure ?
I managed to get oauth token and Token secret from google, after the user login and grant access to the web site.
after that I want the user's ID, first name, last name, and other available information about login user's.
How can I achieve it.
Thanks in advance.
First off these questions are related but do not fix my problem:
http://stackoverflow.com/questions/2499934/
http://stackoverflow.com/questions/652836/
I have installed Visual Studio Web Developer Express Edition 2010, then I installed MVC 2. Now I can successfully run a MVC 2 application, however I have to do the manual imports of the namespaces and stuff.
How can I install the templates?
Hello,
in C++, is there any convention to either "uppercase" or "lowercase" the first letter of source code file names?
For example if I have the class "MyClass" in a header file, should I name the file as
MyClass.hpp
or
myClass.hpp
?
Hi,
I am using C# and I am having trouble loading large files into a binary field use byte arrays.
Basically, if I load a file that is too large, I get memory problems.
Is there a way to load a file into a binary field without using large amounts of ram, i.e. avoid loading the file into memory first?
If it helps, I am using Advantage Database Server and this is using a winforms app not a web app.
Regards
I have a text file looks like this :
100 50 20 90
4.07498 0.074984
37.1704 28.1704
20.3999 14.3999
48.627 35.627 ....
I need to edit this file so that everything is kept the same except the first line, 3rd item. The ouput should look like this:
100 50 19 90
4.07498 0.074984
37.1704 28.1704
20.3999 14.3999
48.627 35.627
....
How can I do it in c++ ? Can anybody help me?
Thanks,
Hoang
When I am in edit mode on any row of my GridView and I press Return while the focus is in one of the row's textboxes, instead of triggering the update button, my GridView1.RowEditing event is fired with a NewEditIndex of 0
This causes the first row to become editable and I lose any values typed into the previous row.
How can I stop this from happening?
Thanks
Hello,
I have a list of urls for which I want to display first 200 or 250 characters. Can I do it using jquery or should I download them on the server side [using PHP] and store them in database?
I guess I will have to use fopen with limit of characters. **
Can someone please explain the following
How was the first JDK release unit Tested? Since Junit came after Java how did they do it?
Are the current releases using Junit to test the JDK API?
Regards
I have a ResultSet object containing all the rows returned from an sql query.
I want to be able to (in the java code, NOT force it in the SQL) to be able to take a ResultSet and transform it so that it only contains 1 (the first) row.
What would be the way to acheive this? Also, is there another appropriate class (somewhere in java.sql or elsewhere) for storing just a single row rather than trimming my ResultSet?
Thanks!