Click here to Skip to main content
       

Web Development

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page  Show 
QuestionHow to get an answer to your questionadminChris Maunder4 Sep '10 - 2:25 
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 VB.NET question in the C++ 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. Be careful when including code that you haven't made a typo. Typing mistakes can become the focal point instead of the actual question you asked.
     
  6. Do not remove or empty a message if others have replied. Keep the thread intact and available for others to search and read. If your problem was answered then edit your message and add "[Solved]" to the subject line of the original post, and cast an approval vote to the one or several answers that really helped you.
     
  7. If you are posting source code with your question, place it inside <pre></pre> tags. We advise you also check the "Encode "<" (and other HTML) characters when pasting" checkbox before pasting anything inside the PRE block, and make sure "Use HTML in this post" check box is checked.
     
  8. Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
     
  9. Please do not post links to your question into an unrelated forum such as the lounge. It will be deleted. Likewise, do not post the same question in more than one forum.
     
  10. Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
     
  11. If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
     
  12. No advertising or soliciting.
     
  13. We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.
cheers,
Chris Maunder
 
The Code Project | Co-founder
Microsoft C++ MVP

QuestionHOW TO ANSWER A QUESTIONadminChris Maunder12 Jul '09 - 22:40 
Apologies for the shouting but this is important.
 
When answering a question please:
  1. Read the question carefully
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
  3. If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
  4. If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
 
cheers,
Chris Maunder
 
The Code Project Co-founder
Microsoft C++ MVP

QuestionFixed Navigation at the Top with Fixed Width [modified]memberDanzy8321hrs 56mins ago 
Hello everyone. I've created a navigation menu at the top of the document which is fixed when scrolling. Everything works fine for me on my computer.
 
Now I'm considering that not all persons will open the page with displays as wide as mine. I resized the browser window to be smaller to see the effect. I realised that when the window becomes smaller, navigation menus that do not fall within the length of the visible part of the document wraps to the next line which is outside the coloring of the navigation at the top.
 
I'm looking for a way to force those menus to be shown on a single navigation line so that the user will have to scroll horizontally in order for those menus to be shown.
 
I have set the width of the navigation to 100% to compensate for wide screens. It's left with how to make them appear on the same line but visible on scrolling on small screens. I want to know how to solve this. Thanks in advance.

modified 21 hrs ago.

QuestionWeb based video group conferencingmemberpantered22 May '13 - 11:42 
Hi everyone,
 
I am like crazy looking for a answer for this issue...
 
This is my case.
 
I have a website. Users access my website and then they choose a category. For example: Biology…
 
what I need? I need this…
 
When they choose Biology category I need to redirect the user to the next page where they are going to see the video conferencing chat room layout. At the same time when they make the click in the category button, I need to trigger a function that contact the video conference moderator and the other video conference participants so when the user get to the page where he was redirected at the same time the participants and the moderator enters in the video conference and start the interactive video conference.
 
I need this to happen to every category with the different participants all triggered by the category that the user choose.
 
I hope I explained myself clearly.
 
What would i need to achieve this?
 
Help is urgently needed...
 
Thanks in advanced
Questioncss question.memberimbaro21 May '13 - 5:18 
Hi, i have a div with text inside him.
the div is somewhere in the middle of the page.
 
in the div there is another div with text.
 
i want that the inner div will be showen by its text size,
to show all the text, and to be showen on all of the other screen.
 
thanks, ofer.
QuestionUpload file and after period delete the filememberComWeb18 May '13 - 7:19 
I have pdf file with 9 MB size and I am interesting to upload this file to the internet and only people that I send a link to this web can download this pdf file and I want that after a period I will have the option to erase this file so no one can see this pdf file, what website give me this option? How I can do it?
AnswerRe: Upload file and after period delete the filememberdusty_dex18 May '13 - 9:16 
I use dropbox.com But there's bound to be others, but I haven't bothered to find any because dropbox does what I need.


AnswerRe: Upload file and after period delete the fileprofessionalPrasad Khandekar21 May '13 - 5:03 
Hello,
 
You can deploy a document management system like KnowledgeTree or Alfresco for this purpose. You can even use SharePoint.
 
Regards,
Prasad P. Khandekar
Knowledge exists, man only discovers it.

QuestionUpload file and after period delete this filememberComWeb18 May '13 - 7:17 
I have pdf file with 9 MB size and I am interesting to upload this file to the internet and only people that I send a link to this web can download this pdf file and I want that after a period I will have the option to erase this file so no one can see this pdf file, what website give me this option? How I can do it?
QuestionUrl RewritingmemberDanzy8316 May '13 - 15:11 
I beginning how to use url rewriting. Now I have this rule in apache (an example) which works fine:
 

RewriteEngine On
RewriteRule ^register$ register.php
 
 
I have also learnt that in order for the rule to accept an ending slash (localhost/register/), the rule should be changed to:
 
 
 RewriteRule ^register/?$ register.php
 

  This also loads the register.php page when it is accessed through (http://localhost/register) but when I add the trailing slash (http://localhost/register/), my stylesheet which is in a different directory is not applied in formatting the page. The page thus loads without any formatting.   How can I ensure that the stylesheet is used in formatting the page when there is a forward slash at the end? It is possible for a user to add the slash at the end and so I would like to know a solution. Thanks.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 23 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid