5,277 Posted Topics
Re: Can you clarify it a bit more? Strictly Ajax? Server side scripting to provide content to the Ajax script? What exactly do you mean by that? | |
Re: So what you found is really the simplest definition. Say you have data and you want to build a report including graphs. How would you do it? You'd have to develop it. This can definitely take some time and resources to do. Crystal reports allows you to access data, and … | |
Re: Do you want to create a static menu? does it have to be dynamically created from a data source? ASP.NET does have menu control, but I generally prefer to build the menu myself. I'm not too impressed with this control. In any event, for a static navigation menu with multiple … | |
Re: What happens, aside from data not being written to the table? Any errors on the screen when you click on the submit button? | |
Re: You can use JavaScript for something basic. Here is some sample code you can take a look at and adapt to your needs... <!DOCTYPE html> <html> <head> <title>Demo</title> <style> img {border:1px solid #7f7f7f;} .thumb {margin-right:4px;} </style> </head> <body> <img id="preview" src="images/red.jpg" width="200" height="300" /><br /> <img class="thumb" id="red" src="images/red.jpg" width="60" … | |
Re: You need to build your table rows and cells within the while loop. At the moment, your building your table outside of the loop. Also note that one of your td tags is not closed properly. Line 30 | |
Re: There are several options...if you are going to use plain JavaScript/AJAX, you can send multiple values using the query string approach if you are sending via GET, or you use POST as well. both have the ability to send mutliple values. If you use POST, you have to adjust your … | |
Re: Not an aspx page... Right click project name, add item, class. A new .cs file will be added to your App_Code folder. | |
![]() | ![]() |
Re: To get the value from the hidden input element you can use the .val() method, you need to make a slight modification..try... var messageId = $('.inbox-messageId').val(); var file = 'inbox_view.php?id='; var url = document.write(file + messageId); | |
Re: since you are a new member, I would say you would be likely to get some participation on this thread if you first give it a try and then ask for help with regard to the specific areas/components you get stuck on. this sounds like more than just a snippet … | |
Re: Try DateTime instead.. However it assumes your DB table field is set to the appropriate data type..I used the index number instead of column name only because I dont know what your column names are in the db. replace 0 with the correct index number or use column names. Dim … | |
Re: I am fairly certain that if your schema is being reported at the correct version, the error shown can be ignored. On a side note, if I may comment... In a single domain model, you should configure all of your DCs as GCs. | |
Re: How about using isset? if(isset($_GET['pid'])) { $pageid= $_GET['pid']; } | |
Re: Looks like you are missing an = sign here: srv_date'$srv_date', | |
Re: If you are using visual studio, I'm assuming you will be developing this in asp.net? So you need more than a disc. Will you have your laptop with you? If so, you can run the project from there using visual studio's dev server. You can have sql server express edition … | |
Re: A similar question has been asked, take a look at this thread to see if it answers your question. http://www.daniweb.com/hardware-and-software/pc-hardware/motherboards-cpus-and-ram/threads/435817/what-is-the-difference-between-intels-core-2-duo-an-dual-core | |
![]() | Re: I sometimes use browershots.org if I want to see how the website renders accross a series of different browsers. |
Re: The solution to this problem is definatley going to be styling related. If you can right click on the page and view source, you may be able to figure out why its positioned there. In my case, I am unable to reproduce this because I dont have the ajaxtoolkit installed. … | |
Re: So, you really dont want to execute or stop the spin from vb (server side). What you want to do is when you click on the button (cmd_cal), that is going to cause a post back and the delay of approx 10 seconds before the page is refreshed. So, what … | |
Re: > I have to in order to cycle between pages), then this will only allow one change! So can you clarify something.... you have to refresh the current page, or just go from page to page? For example.. user sees: `Page 1 --> x seconds redirects to --> Page 2 … | |
![]() | Re: Too late... iLikePHP had some issue with a discussion on the chat log the other day and decided to delete his profile. |
Re: Do you have this site online somewhere so we can also take a look at the HTML? | |
Re: Please, only post your thread once. I will move this thread to the JavaScript forum category for you. You can always click on "flag bad post" in the future to get a moderator's attention. thank you. | |
Re: Since th error message indicates a possible network problem "server not found", you should validate that you have network connectivity to that system. From a command prompt are you able to successfully PING the server by name? When you see this error, it's happening during the creation if the odbc … | |
Re: What problem are you having? If you have a valid product key, and an Internet connection, Windows will call home and activate itself. If you are encountering an error, you can call Microsoft to help you activate Windows over the phone. | |
Re: What error message do you get? If you are familiar with network tools...have you tested connectivity to port 1433? either with a port scanner to validate that the port is open and listening, or with another tool to see if you actually connect on 1433? Otherwise, if you have SQL … | |
Re: @EvolutionFallen, so you got to this one before me...haha. Yeah, I wouldnt recommend the use of font either at this time. While modern browsers still support it, since its been deprecated, future verions of modern browsers could decide to drop it. Whenever you want to style an object, its best … | |
Re: >Never considered jQuery Take some time to learn basic javascript before jQuery. You dont have to be an expert in JavaScript for jQuery, but since jQuery is a JavaScript library, it will help you. | |
Re: No pictures appear? Are you using Chrome? If so, use your dev tools to verify if you are getting 404 not found errors. | |
Re: >I want creat domain "active directory" and DHCP ,what class ip needed and subnet mask? Active Directory doesnt have any specific requirement for a certain ip network range. Your IP range and number of subnets depends on other factors. Once you determine how your network is going to be designed, … | |
Re: Did you include the script manager control in your aspx page? Set the timer interval? [Timer control overview](http://msdn.microsoft.com/en-us/library/bb398865(v=vs.100).aspx) | |
Re: Regarding your error... "JavaScript runtime error: Unable to get the "UI" property of a null reference or undefined" I dont see that you registered the AjaxControlToolkit at the top of the page? Take a look at this thread on the asp.net support site. http://forums.asp.net/t/1926083.aspx | |
Re: Thanks James for bringing this to our attention. As Ancient Dragon suggests, just click on "Flag Bad Post" next to a suspected spam posting. The moderators on this site routinely check the reported posts. | |
Re: Any easy way to see the error if you aren't familiar with extracting the exception is to temporarily remove the try..catch blocks. The app will fail and the error will be displayed assuming you allow the remote system to see the error (configured in the web.config) | |
Re: I think you may want to take this and resolve it in parts. For example, first clarify if you are planning to save the image in the database, or on the file system and the link in the database? I've looked through my documentation and found a bookmark that I … | |
Re: >a graph appears on screen Sounds like an app that you had installed, likely by Realtek. If you have the original CDs that came with the laptop, you'll probably find the app there. Otherwise, check on Realteks website, support. Along with the drivers, they most likely have these accessory apps … | |
Re: Here is a simple example... seems to work. show your relevant code..maybe you have some other issue. <!DOCTYPE html> <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> <script> $(document).ready(function(){ var i = $( "#img1" ); var offset = i.offset(); $("#pos").text( "left: " + offset.left + ", top: " + offset.top ); }); </script> </head> … | |
Re: Can you clarify your statement or question? What login problems are you referring to? | |
Re: I tested your code. It worked as expected. I do agree that you may consider adding the ClientIDMode Attribute so that asp.net renders the HTML element with that ID. I did not add it in my example and when I looked at the HTML source code, ASP.NET used the same … | |
Re: >The Home Page field is perfect for the addition of your blog. That's correct. Use this field to store the URL for your web page or blog. | |
Re: Your question is unlikely to get many responses. Since you are new member, i'd suggest that a better approach is to give it a try...post your code and we'll help you work through your issues. There are plenty of examples online that you can find, although it may not be … | |
Re: If you have already reset the box to factory defaults, you should be able to plug a laptop into the access point via its ethernet port. I would suggest you do this prior to trying to connect via a wireless connection. here are the quick install instructions that go over … | |
Re: Moved this thread to C# as suggested... | |
Re: >Are there really not allowed to be multiple H1 tags on the page? I've always wondered as well. however, i've stuck with the use of only one h1 per page. Mainly because while you wont find any standards that say you cannot use more than one per page, you do … | |
Re: I recently read the "The Definitive Guide to HTML5" from Apress. I really enjoy the Apress books. With regard to an editor, I'm also into ASP.NET development so I find Visual Studio to be the best IDE. If you are only going to be working on HTML, CSS, and JavaScript, … |
The End.