The Wayback Machine - https://web.archive.org/web/20090130041145/http://www.codeproject.com:80/script/Forums/View.aspx?fid=1640
Click here to Skip to main content
5,845,357 members and growing! (19,602 online)
Announcements
* Bold indicates new messages since 18:11 29 Jan '09




BullFrog Power
Advanced Search
Sitemap

Web Development


Home > Forums > Web Development

 Msgs 1 to 25 of 840 (Total in Forum: 26,232) (Refresh)FirstPrevNext
AdminHow to get an Answer to your QuestionadminChris Maunder17:35 23 Mar '07  
For those new to message boards please try to follow a few simple rules when posting your question.
  1. Choose the correct forum for your message. Posting a C++ question in the Web Development forum will end in tears.
  2. 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.
  3. Keep the subject line brief, but descriptive. eg "File Serialization problem"
  4. Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.
  5. 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.
  6. Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
  7. Please do not post links to your question in one forum from another, unrelated forum (such as the lounge). It will be deleted.
  8. Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
  9. If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
  10. No advertising or soliciting.
  11. 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

QuestionHow can i solve 400 Bad Request ErrormemberMember 41249151 hr 2mins ago 
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
QuestionProblem in retrieving image file sent through web servicememberviralp4u7hrs 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
GeneralRe: Problem in retrieving image file sent through web servicesitebuilderShog952mins ago 
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.'

Questionlink button not fireing asp.netmembernitpall15hrs 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 Smile

Thanks & Regards
Nitin
GeneralRe: link button not fireing asp.netsitebuilderShog910hrs 4mins ago 
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.

QuestionHow to deploy SharePoint website or webapplication?membersalon19hrs 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,
AnswerRe: How to deploy SharePoint website or webapplication?mvpled mike12hrs 7mins ago 
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.
QuestionAjaxmemberKarthick_gc19hrs 29mins ago 
Whats the role of AJAX in web development? Can anyone explain?
GeneralRe: AjaxsitebuilderShog99hrs 49mins ago 
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.

AnswerRe: AjaxmemberTapeBoy9292hrs 55mins ago 
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[^]
QuestionHave a loading animation while server-side is workingmemberlivez21hrs 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?
AnswerRe: Have a loading animation while server-side is workingsitebuilderShog99hrs 41mins ago 
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.

QuestionCursor can not move through all the characters within textbox after textbox.select()memberAshishTijare22hrs 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

AnswerRe: Cursor can not move through all the characters within textbox after textbox.select()sitebuilderShog99hrs 38mins ago 
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.

Questionhow can I assign two different actions to a single .asp form?-membercobyxm10: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
AnswerRe: how can I assign two different actions to a single .asp form?-mvpled mike11:03 28 Jan '09  
cobyxm wrote:
Is this possible?


Yes
GeneralRe: how can I assign two different actions to a single .asp form?-membercobyxm11:10 28 Jan '09  
how can I do this?
GeneralRe: how can I assign two different actions to a single .asp form?-memberJörgen Andersson11:51 28 Jan '09  
You can read this[^].
Pay special attention to sessionvariables.
It's after ArrayList: The Super, Handy-Dandy, Array-Type Thingy
Questionerror '80020009'memberEkjon7: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.
AnswerRe: error '80020009'mvpDave Kreskowiak8:26 28 Jan '09  
This is the first thing anyone is going to do to find out what that error means: Google for "error 80020009"[^].


A guide to posting questions on CodeProject[^]



Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007, 2008




GeneralRe: error '80020009'memberEkjon9:39 28 Jan '09  
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.
Generalletmegooglethatforyoumvpled mike10:20 28 Jan '09  
WHAT THE HELL DAVE! I suppose that's been around for like ever and I am just now finding out?

LMAO
GeneralRe: letmegooglethatforyoumemberEkjon10:54 28 Jan '09  
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?
GeneralRe: letmegooglethatforyoumvpDave Kreskowiak17:24 28 Jan '09  
That's been around for at least a few months, that I know of anyway. I thought it was a pretty cool idea myself. Big Grin


A guide to posting questions on CodeProject[^]



Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007, 2008




General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


Last Updated 9 Aug 2007
Web17 | Advertise | Privacy
Copyright © CodeProject, 1999-2009
All Rights Reserved. Terms of Use