 |
 | How to get an Answer to your Question |  | Chris Maunder | 17:35 23 Mar '07 |
|
 |
For those new to message boards please try to follow a few simple rules when posting your question.- Choose the correct forum for your message. Posting a C++ question in the Web Development forum will end in tears.
- Be specific! Don't ask "can someone send me the code to create an application that does 'X'. Pinpoint exactly what it is you need help with.
- Keep the subject line brief, but descriptive. eg "File Serialization problem"
- Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.
- If you are posting source code with your question, place it inside <pre></pre> tags, or click the "Ignore HTML tags in this message" check box.
- Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
- Please do not post links to your question in one forum from another, unrelated forum (such as the lounge). It will be deleted.
- Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
- If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
- No advertising or soliciting.
- We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.
cheers, Chris Maunder CodeProject.com : C++ MVP
|
|
|
|
 |
|
 |
Hi, When i try to open the website which is developed in joomla getting an error 400 bad server request.Can anyone help me to solve the problem.
Thanks in advance, Rasma.
www.rasma.cjb.in
|
|
|
|
 |
 | Problem in retrieving image file sent through web service |  | viralp4u | 7hrs 30mins ago |
|
 |
Hi, I created web service using C# which consumes one image file(.TIFF format) having 3-4 pages, It converts that file into binary , and put to one destination folder. I was able to see that file in destination folder. But when I opened that file, i could see only 1st page of image file, not other pages. Can you please provide me solution of this problem???
Thanks. VIRAL
|
|
|
|
 |
|
 |
viralp4u wrote: Can you please provide me solution of this problem?
You should probably explain first how you're reading, saving, and then opening it, in sufficient detail for someone to do more than make wild guesses at what's going on. You should definitely do this in the C#, .NET Framework, or Graphics forums instead of here (this forum is for web dev questions).
Citizen 20.1.01 'The question is,' said Humpty Dumpty, 'which is to be master - that's all.'
|
|
|
|
 |
 | link button not fireing asp.net |  | nitpall | 15hrs 46mins ago |
|
 |
The link button looks like this <asp:linkbutton runat="server" id="CreateButton" causesvalidation="true" text="Submit" xmlns:asp="#unknown"> ValidationGroup="NewUserForm" OnClick="CreateButton_Click" />
its a user profile form with all validators , the validations work well but the button wont fire rather causes the page to scroll to top. tried with __doPostBack(buttonID,"OnClick") kind of stuff too but same problem Please help out with a clue 
Thanks & Regards Nitin
|
|
|
|
 |
|
 |
Sounds like you either have JavaScript disabled in your browser, or there's an error in the script somewhere. Check for both. And you might have more luck asking this in the ASP.NET forum.
---- You're right. These facts that you've laid out totally contradict the wild ramblings that I pulled off the back of cornflakes packets .
|
|
|
|
 |
 | How to deploy SharePoint website or webapplication? |  | salon | 19hrs 22mins ago |
|
 |
I am very new to SharePoint... I need to know two things: 1. How to work on a single website with multiple developers? 2. How to deploy the SharePoint website or webapplication on production server or client machine?
Do anybody know some answer or some links which can help me?
Thanks in advance,
|
|
|
|
 |
|
 |
salon wrote: How to deploy the SharePoint website or webapplication on production server or client machine?
here let me Google that for you[^]
salon wrote: Thanks in advance
No problem, I enjoy helping the Google impaired.
|
|
|
|
 |
|
 |
Whats the role of AJAX in web development? Can anyone explain?
|
|
|
|
 |
|
 |
The literal meaning of AJAX is Asynchronous JavaScript And XML. Practically, it's used to refer to any sort of asynchronous communication between client-side script on a web page and a server (not only those involving XML). The "Asynchronous JavaScript" bit is key, as its role is in applications where it is desirable to allow the user to perform one or more actions without waiting for a response from the web server. Examples:
- Populating or validating form fields while the user is busy filling in other fields.
- Loading and displaying search results while the user is typing in a query.
- Saving changes to one piece of data while the user is examining or modifying other pieces of data.
---- You're right. These facts that you've laid out totally contradict the wild ramblings that I pulled off the back of cornflakes packets .
|
|
|
|
 |
|
 |
When a user puts and address in the address bar, the browser calls the server, the server generates content, and the browser displays it. Traditionally, once the server delivers content, that content will not change unless another server call is made. This means that if realtime values are changing, the webpage will displays the same values until the page is refreshed.
AJAX is simply a Javascript xmlHttp function that make servers calls and changes page content by the browser. This means the page content can change without having to submit a form or refresh the page. Consider this page-
http://www.time.gov/timezone.cgi?Eastern/d/-5/java[^]
The page loads once, but the clock field continually changes every second. This would be an AJAX script that calls another page that dynamically generates the time right now. If Javascript calls for this function every second, it appears to change like a realtime clock.
Professional Services Specialist rviswakumar@hostmysite.com HostMySite.com[^]
|
|
|
|
 |
 | Have a loading animation while server-side is working |  | livez | 21hrs 9mins ago |
|
 |
Hello!
I have a page from which the user can export data. This can take quite a while if alof of data is to be exported. I have tried showing a loading animation(.gif) while the user waits, but to no avail.
I got it working in firefox by appending a gif-image to the page using javascript when user clicks submit-button, but in IE the gif-image shows fine but doesnt move.
Anyone got an idea how to achieve this?
|
|
|
|
 |
|
 |
The easiest way to do this is to start sending the server response immediately - just the start of a document with progress indicator - and not finish the response until your task is complete. The downside of this technique is two-fold: you're limited in how long you can keep a connection open, and you're keeping a connection open the entire time; if you expect more than a handful of simultaneous users, this will kill your server.
More efficient techniques can make use of AJAX, META-refresh, or script-driven postback. CP has a number of articles on the subject[^].
---- You're right. These facts that you've laid out totally contradict the wild ramblings that I pulled off the back of cornflakes packets .
|
|
|
|
 |
 | Cursor can not move through all the characters within textbox after textbox.select() |  | AshishTijare | 22hrs 50mins ago |
|
 |
I want to highlight text in textbox on focus of it. I have called textbox.select(). The problem after execution of textbox.select() is, cursor can only move to begining of the text or to the end of text in textbox. It is not going through the characters which are in the middle. Cursor directly jump to begining or end character in the textbox when moved.
Can somebody suggest the solution over this (I am doing all this stuff in javascript, so javascript solution is most welcome).
Thank you.
Ashish Software Engineer, Pune
|
|
|
|
 |
|
 |
I take it then that you do not actually wish the text in the textbox to be selected, as the behavior of the cursor with regard to selected text is plaform- and browser- dependant.
So just change the background and text color of the textbox:
var textbox = document.getElementById("textbox"); textbox.style.backgroundColor = "blue"; textbox.style.color = "white";
...etc.
---- You're right. These facts that you've laid out totally contradict the wild ramblings that I pulled off the back of cornflakes packets .
|
|
|
|
 |
 | how can I assign two different actions to a single .asp form?- |  | cobyxm | 10:30 28 Jan '09 |
|
 |
I have a form on my site that takes client information for a sale on the first page (name, email, address, etc.), then calls the 2nd page (Enter Credit Card Information) then sends all the information to a shopping cart. I would like to capture the first page information and send it at the same time to another database for our Customer Service Reps. Is this possible?
thanx for any help
cobyco
|
|
|
|
 |
|
 |
cobyxm wrote: Is this possible?
Yes
|
|
|
|
 |
|
|
 |
|
 |
You can read this[^]. Pay special attention to sessionvariables. It's after ArrayList: The Super, Handy-Dandy, Array-Type Thingy
|
|
|
|
 |
 | error '80020009' |  | Ekjon | 7:57 28 Jan '09 |
|
 |
I have this report built using ASP in 2000.
We did some modifications few months ago and was running fine.
Now, all on a sudden it's giving error '80020009'.
Any ideas? Thanks.
|
|
|
|
 |
|
|
 |
|
 |
Well I definitely did before posting for help.
Looks like there could be an array of reasons for the problem, including spywares etc. (don't have any) I tested more and found if there is a lot of data - thats when Im getting it. If less data - report is still working.
|
|
|
|
 |
|
 |
WHAT THE HELL DAVE! I suppose that's been around for like ever and I am just now finding out?
LMAO
|
|
|
|
 |
|
 |
Not really.
As I mentioned - it was working for maximum amount of data possible in this case. Now - it works for small amount of data, not otherwise. The only thing I know of is a windows update couple of weeks ago.
Any fruitful ideas?
|
|
|
|
 |
|
 |
That's been around for at least a few months, that I know of anyway. I thought it was a pretty cool idea myself.
|
|
|
|
 |