5,277 Posted Topics
Re: The issue you are experiencing is expected. Take a look at this conversation on the asp.net website regarding this topic. There are a few different ways to handle this. http://forums.asp.net/t/1519204.aspx/1 | |
Re: What type of VPN connection are you referring to? Who are you connecting to and with what VPN client? | |
Re: Yes, multiple backgrounds are supported across the major browsers. You can use the background-position property to position each background independently. I have a sample of this on this page: http://www.itgeared.com/articles/1481-css3-background-size-overview/ scroll to the bottom to the section called: **Multiple Background Images** | |
Re: You validated that your SQL queries produce the expected results outside of your aspx application? For example, run the queries in SQL Mgmt Studio. | |
![]() | Re: Sounds like you want to implement a full join. A full join will include records from both tables where there is a match in at least one table. Here is an example of how to implement it. http://www.itgeared.com/articles/1169-sql-full-join/ ![]() |
Re: Did you create a different website in IIS for the subdomain? If so, you also have to configure the host headers so that the web server knows which web site to server based on the host name in the URL. | |
Re: you may want to try a new driver. The problem you are having is most likely with your myConn.Open property. You need to use the correct drive for your pariticular scenario. If you are connecting to Access, you may want to try a newer driver especially if you have Office … | |
Re: Yes use the DataImageUrl field. Here is an example. http://msdn.microsoft.com/en-us/library/aa479350.aspx It's easy to to setup if you are using the visual studio in design mode. | |
Re: A few slight changes. main change I made was line 67 of your example. <!DOCTYPE html> <html> <head> <title>My Calculator - Constance Dobbins</title> <script> function getInputAsText(_id){return document.getElementById(_id).value} function getInputAsNumber(_id){return parseFloat(document.getElementById(_id).value)} function setOutput(_id, _value){document.getElementById(_id).value = _value} function calculate (code) { //declare variables var first; var second; var resultAsNumber; var resultAsText; //get … | |
Re: It could be something related to the content in your statement. Note if you have any apostrophe's or other characters that would be intrepretted by PHP as the end of the SQL statement. You may want to post your MySQL and PHP code to take a look. | |
Re: Did you already produce the SQL Query? What problem did you have in your c# logic? | |
Re: For some reason, the function cannot be called click... its probably a keyword. Here is an updated version based on your code. Please note that some of your elements were in the wrong place and you were missing some structural HTML elements. The sample below will increase the value and … | |
Re: All of the is available on the Microsoft website including licensing info. With regard to Windows, which operating system were you considering in your comparison? | |
Re: Anything in any of the event logs on our about the time that the services stop? | |
Re: In AleMonteiro's example, he is only showing you how to insert into **one** table, but from the results of a query from another. | |
Re: Once you have an operating system installed, if the network book has a lower priority, then it will not attempt because the OS will load first. However, in your case, if you have no OS, then the computer will go through your boot priority list and try each option until … | |
Re: What kind of router are you referring to? On a top/ip network, for the hosts to communicate the need to have a unique ip assign within the local subnet. You need the ip and subnet mask at a bare minimum. To get out of the subnet, the hosts require a … | |
Re: it helps if you post the relevant code. | |
Re: There are various ways to accomplish what you are doing. I am not necessarily encouraging you to continue on the design that you have chosen, but I looked at your code and slightly modified it to work with the direction you are going. Try something like this for the index … | |
Re: If you going to use a non-IDE environment for developing web pages, I would suggest that you do not use Word, just use Notepad. Creating web pages with Word will add all sorts of additional content which will just complicate your development. It sounds like you may need some additional … | |
Re: I think in the IT industry, learning about all aspects of various technologies is a good thing since they are all related. For example, being a great programmer with a solid understanding of networking is a good recipe for building networking related applications. Or being great at networking with some … | |
Re: You could implement security manually in the manner you are describing above, but there is a another approach using built in classes, methods, etc... I would suggest you start looking at Security documentation on the asp.net website. http://www.asp.net/web-forms/tutorials/security | |
Re: So from an applications perspective, if you kept the website content located network drive, as long as windows has assigned this network drive a "drive letter", the web server installed on your computer should be able to use this network drive. However, it doesnt make sense to host the application … | |
Re: Then it appears that the value of tb is 0 before you add in the value of b. | |
Re: In Visual Studio, in Gridview Tasks, if you enabled "Enable selection", this additional column will show in the gridview. Generally, this column can now be used so that when you click on it, you can display data in another control such as a details view. So, if on the same … | |
Re: Yes. Some network drivers have support to be able to change the MAC address in "software". there is nothing really special about this. From a networking perspective, the MAC is only important within the local subnet. A remote host does not see the MAC address from where the packet is … | |
Re: Create a function in your code block, then from your itemtemplate, call that fuction. depending on what you are trying to do... <%# MyFunction(param) %> <%= MyFunction(param) %> | |
Re: Ok, the traditional equation is 2^n-2. The reason is the not all routers will support the use of the first and last subnet IDs. There is an explanation if you are interested. I have a high level overview if you are interested: http://www.itgeared.com/articles/1347-cidr-and-subnetting-tutorial/ If they are teaching 2^n these days, … | |
![]() | Re: What operating system are you referring to? There are slight differences and the list of commands will also slightly vary. ![]() |
Re: Can you elaborate on what exactly you are trying to do? Are you trying to fade the color of an element? | |
Re: @deceptikon, the rep you gave LastMitch didn't count I believe because we are in a non-technical forum category. Based on Reverend Jim's remark, couldn't someone just log in with that account and just up vote all of the down votes? This would not require a manual, direct change of any … | |
Re: I would tend to agree that one viable option is to take the information from the textboxes, save them to a database table. Then use one of the asp.net controls in your toolsbox, such as a repeater, or a datalist and display the results on the page. | |
Re: Just to add another note, I assume the reason why you were concerend is because of your statement regarding Firefox and when you saw "explorer.exe" running you were concerned because you didn't have Internet Explorer running. I understanding the confusion if this is the case. Internet Explorer runs as "iexplore.exe", … | |
Re: Can you elaborate a bit? Regarding PHP testing, not sure what testing you mean. When you access a web page coded in PHP, the web server's PHP engine will process the script and return HTML back to the browser. | |
Re: I beleive that I had a similar experience two occassion. Both times with menus. On one occassion it was with a horizontal menu and the other with a vertical menu. If I understand you correctly, when the page refreshes, it appears that there is a delay in applying appropriate style. … | |
Re: difficulty always depends on who you ask. If someone has the knowledge, then its not necessarily about the difficulty really, its about the time it takes to develop the solution. With regard to the example you provided, a custom solution may not be required because there are a lot of … | |
Re: I dont have IE 7 handy to test, but have you tried using jQuery? <!DOCTYPE html> <html> <head> <title>Demo</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> </head> <body> <form id="the_form"> <input type="checkbox" value="ideal" name="ideal_drive" id="ideal"> <label for="ideal">This is a test only only</label><br /> </form> <script> $('label[for="ideal"]').css('color', 'yellow'); </script> </body> </html> | |
Re: What is the error message you receive? Have you tried a different browser? Are you able to access other web sites? Do you have the adobe flash player installed? | |
Re: When the asp.net renders, it renders at HTML as you are probably aware. So, your designer team only has to worry about styling the expected elements. If they know what the ID of the asp.net controls are ahead of time, they can prepare the CSS on their side. | |
Re: So, there are a few ways to approach this. I think the easiest way is to create use two divs. The approach here is to make the outer div's width less that that of the inner div so that the scrollbar wont show on the screen. While you can set … | |
Re: You'll need to be more specific as to what is not working. Keep in mind that CSS3 modules are all not yet supported across all common browsers. What CSS3 property are you having trouble with? | |
Re: While most submit as XML, the text file should work. Did you ensure that it is save as UTF-8 encoding? ![]() | |
Re: If you are going to plug in another router on the network for the purpose of creating an access point, then you will need to take an extra step and disable routing and configure that Linksys box to act only as an access point. Apparently that model can be set … | |
Re: >An IP with the prefix octet of 192 is always a private IP Address. Actually, the only range that is private on the 192 address block is: `192.168.0.1 - 192.168.255.555 ` 192.38.10.x is a public range. 10.201.157.xx is on a private range and based on your description, it sounds like … | |
Re: Is this a message you see at the login screen for Windows or prior? Can you boot Windows into Safe Mode (hit f8 prior to windows loading)? | |
Re: Can you provide the relevant HTML code. The clear:both style is generally used after the floats so that you ensure that the content you are applything this to is "clearing" both the left and right float. | |
Re: You are referencing the wrong query string parameter. In your abc.aspx file, the query string parameter you used is BC, not Barcode. So just change line 3 to "BC". |
The End.