5,277 Posted Topics
Re: What type of phone are you using? I'm responding to your post with an iPhone. | |
Re: >"he phrase is often used in reference to network-based services, which appear to be provided by real server hardware, and are in fact served up by virtual hardware, simulated by software running on one or more real machines. Such virtual servers do not physically exist and can therefore be moved … | |
Re: If you are interested in how IT relates to business, I suggest Management Information Systems. | |
Re: Do you mean automatically fill in the IP of the client submitting the form? If the form is on a PHP page, use `$_SERVER['REMOTE_ADDR']` to get the IP. | |
Re: if you simply formatted drive c, but left D and E intact, then all you need to do is resinstall Windows XP or later on drive C again. Once you have the OS installed and you log in, you will be able to access drive D and E. Assuming that … | |
Re: Null and "" is not the same. If you are passing null values then check for nulls. Try... string.IsNullOrEmpty(var1) Which is the equivalent to... ((var1 == null || var1 == string.Empty)) So in your case... If (string.IsNullOrEmpty(DateFrom) && string.IsNullOrEmpty(DateTo)) | |
Re: Site doesnt seem to be accessible, at least not at this moment. If you have sample HTML (without the javascript blocks, non-relevant text/content), you can post it here so we can take a look at your page structure. | |
Re: The problem is that the hyperlink control will redirect to some other page when you click on it. that's how hyperlinks work so you wouldnt be able to capture that information on the postback because there isnt a post back with a hyperlink control. You need to use a linkbutton … | |
Re: >add an if statment to compare if a uppercase value is == "N/A" What value are you referring to? Your description is not clear. Please ask your questions one by one and check the line numbers you are referring to. They doent seem to make sense when I look at … | |
Re: AJAX can be easily integrated into this solution. Just a few lines of javascript code, or even less if you are already using jQuery. You can have this button do both as Tpojka suggests. It can be as simple as... <span id="counter"></span> $.ajax( { url:"counter.php",success:function(result) { // do something with … | |
Re: What solutions have you tried? It would not make sense to provide further guidance without knowing what has and/or hasnt worked for you. | |
![]() | |
Re: Interesting.. i haven't spent much time on this before, but looking at this now, it does seem confusing. I was reading over the document on the jQuery site for the position(). http://api.jquery.com/position/ This doesnt seem like a bug though. it may be that it is simply not clear. According to … | |
Re: Maybe something like this to at least get you going... <!DOCTYPE html> <html> <head> <title>Test Site</title> <style> body { background-color:#5E5858; margin:0px } #left { float:left; width: 200px; height: 266px; } #right { margin-left:200px; height:266px; background:black; } #text { color:green; position:relative; color:green; top:50%; left:50%; } </style> </head> <body> <div id='topbar'> <div … | |
Re: >Is it possible to program all those popular sites just using PHP ? For the most part, I'd say yes. Scripting languages have a lot of overlap with regards to what they can do. Some languages are easier to use for certain things and more challanging for others. Frameworks help … ![]() | |
Re: I'll add some comments to this discussion. I beleive that there are many people in your same situation, or worse. In your situation, while your current position is not the exciting job you wish to have, at least its in the same field of study. However, I am a firm … | |
Re: Yes, I would also agree that you simply consider hosting your video with a site as the ones mentioned by diafol. Then on your website, you simply need to have an object that references back to the link on the hosted site. If you really want to host a video … | |
Re: I believe you mean hashing instead of encrypting? There are other hashing algorithms such as SHA1 and SHA256 that would be considered stronger than MD5. ![]() | |
Re: You just need to modify the connection string. What you modify it to depends on a few factors. Here is an example of a very generic, common string. ConnectionString="Server=myServerAddress;Database=myDataBase;User ID=myUsername;Password=myPassword;Trusted_Connection=False;" | |
Re: With the code sample you provided, it seems to me that the text would be placed on top of the buttons. i copied and pasted your code and just used a random image as a button. seems to work for me. Do you have a link so I can see … | |
Re: Try this... <canvas id="gameCanvas" width="1280" height="720"> Your browser does not support HTML5. </canvas> <script> var c = document.getElementById("gameCanvas"); var gameBoard = c.getContext("2d"); var bg = new Image(); bg.onload = function () { gameBoard.drawImage(bg, 0, 0); }; bg.src = 'board.png' </script> If you still get nothing, use your browser dev tools-->console … | |
Re: >I guess Asp.net in C# Is more Powerful that Asp.net In VB.net Actually, while there are some differences, for the most part you can consider them at par with each other. Both will compile to an intermediate language. http://msdn.microsoft.com/en-us/library/ms178466.aspx | |
Re: Here is something to check on.. First, if you visit the search page with a browser, search.php?term=x are you seeing the correct json output on the screen? Next, I noticed in your script your are using .html(), but for input elements, that isn't going to work. You should try with … | |
Re: Please understand we are trying to help here but you need to be more specific as diafol suggests. You also need to try. Copying and pasting code and/or links if not helpful especially when we follow those links, come back to you with specific questions and then you indicate that … | |
Re: The validator and compiler in my head didn't catch any errors when I ran that code and markup through it. However, it usually not that accurate if there are more than 10 lines of code to look at. It would be helpful if you tell us what isn't working. | |
Re: So you aren't confused... when you visit the Microsoft site to download Visual Studio Express, based on your description what you want is "Express 201x for Windows", not for Web. | |
Re: Here is the basic structure of an RSS feed. <?xml version='1.0' encoding='UTF-8'?> <rss version='2.0'> <channel> <title>Website related title or RSS Feed Title </title> <link>URL to your site</link> <description>Description for your Site/Feed</description> <item> <title>Item Title</title> <link>Item URL </link> <description>Items description </description> </item> </channel> </rss> Then, create a php page...something like this... … | |
Re: I would suggest that first of all all of your web pages include the decleration for HTML5, `<!docytpe html>`. Doing so will not cause any issues for your visitors. From that point, its up to you on what HTML5 elements CSS3 styles to include. You can include some of them … | |
Re: Did you verify that there actually is enough space on the hard drive? | |
Re: Here is the code fixed.. You forgot to include the <body> elements. Also on line 26 and 33 of your code, if you notice you are storing a string for the message. Since there are double quotes around this string, you cannot have double quotes within the string. You need … | |
Re: Its hard to say without seeing your HTML and styles. It could be related to using fixed lengths on certain elements. For example, in a nav menu say you have 10 items and you have a fixed width for each item at 100px. That would require at least 1000px to … | |
Re: You'll need to provide some code here so we can take a look at it and help you with the issue you are having. | |
Re: There was a simliar thread that you may want to look at. Examples in the thread on how to add the rows client side. As long as you include the proper attributes when the rows and elements are created, the values will be accessible server side when you post. http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/467834/auto-calculate … | |
Re: Set the CausesValidation property to false on the controls you do not want to trigger validation. You can do it manually or use design view, click on the control, then properties view. | |
Re: Well, if you want to handle all of that on the same page, rather than having a contact.html page, have a contact.php page instead. Then when the user clicks on the submit button, have the form post to the same page and have PHP code on that page that checks … | |
Re: In addition to the requirements of running a web server on your PC, you also have to consider the fact that your network has to be up and functional, as well as the requirements for a bandwidth. for example, many people these days have high speed internet at their home. … | |
Re: if the text in your input elemnets is being aligned in the center, that means you have some style that is being applied either to the input elements either directly or being inherited somehow. Just apply the `{ text-align: left }` property to your input elements. For example.. form input … | |
Re: If you are going to use the .dialog() method , take a look at the link "Modal Confirmation" in their documentation. https://jqueryui.com/dialog/#modal-confirmation | |
Re: If you are in production mode, I'd suggest to get you back on line as quick as possible on the shared system since you know that was working... it seems logical (at least to me) that you should be able to have them help you restore the old system prior … |
The End.