5,277 Posted Topics
Re: You should first start by creating a propert page structure. You can use this example. This will create a box 1000px in width and center it on the page. From there start to build your content. What is it that you want to center? <!DOCTYPE html> <html> <head> <title>Your Title</title> … | |
Re: When performing a SQL SELECT, you can use ExecuteReader. When performing an UPDATE, INSERT, or DELETE, you can use ExecuteNonQuery(). With regard to your code, you have to read the values. Here is an example in VB (sorry, I dont know C# syntax as well). Just a sample from the … | |
Re: You are going to have a tough time protecting your text and pictures. Think about it... how are you really going to protect the data when you are allowing remote applications (web browsers) with the ability to download your content. Even if you implement all of those tips, such as … | |
Re: You can also place your input elements within div elements and the text in other div elements, then use style properties such as width, height, padding, and margin. Alternatively, what a lot of people do is use table related elements. You can easily build a table, add rows, columns, and … | |
Re: So, assuming that the network share was configured correctly, the problem could be that the local firewalls running on the individual Windows 7 machines are not allowing file sharing traffic inbound and/or outbound. If the firewalls are on, you need to have the necessary rules in place to allow traffic. … | |
Re: Another suggestion for you...dont place any elements before your DOCTYPE. It causes IE to go into quirks mode. | |
Re: Here are some ideas... typical student projets... service request system, inventory system, online store, etc.. | |
Re: Here is an example of CSS code you would use: .green_box {background-color:green} .yellow_box {background-color:yellow} .red_box {background-color:red} Assign each cell a unique ID and assign it a class using JavaScript. Or just manually assign the cells the class they should be styled with. | |
Re: With regard to the width property, the default value is "auto". The browser then calculates the width. Browsers that follow the CSS specification should handle it in the same manner. http://www.w3.org/TR/CSS21/visudet.html#the-width-property | |
Re: When you power up the computer, do you see any lights on the keyboard light up, such as the num lock? If you have no lights, during the POST are you able to use hte keyboard to get into the BIOS CMOS Setup, just to verify if the keyboard is … | |
Re: I think the easiest way to do this is to place a label in the footer, and in your code behind, create another SQL query that simply returns the sum. Then assign that data to the text property of your label. So your SQL query would be (based on the … | |
Re: >However instead of saving the data entered when the user selects "other" it records -1 instead Which data are you referring to? If the user selects "other", is the user typing in the information into a text box? Maybe your INSERT INTO statement is not using the text box data. | |
Re: The problem you are having is that you are using an input element for the image picker. Its causing a post back, which then reloads the page. Your show/hide function wont work properly. Try this. change the input to an image element. remove the code from your vb.net to hide. … | |
Re: What would you like to know about IP and Subnetting? Anything specific? If you just need a simple introduction, there is a lot of information online, although if you want some detailed information, you should pick up a book on TCP/IP. Here is something to start with: [Introduction to IP … | |
![]() | Re: Does the data have to be queried in real time? If it doesn't, what I've done in the past is have a table will is filled by a SQL job on a schedule (once per day, per hour, etc..). Then instead of calling the complex SQL query, you just query … ![]() |
Re: On a tablet at the moment so I can't see your source code, but my guess from seeing your code before is that you applied a width property on that element. You may want to view the site from a tablet, it doesn't look formatted well with regard to the … | |
Re: If you have this site online, providing the URL will be sufficient. | |
Re: There must be something else going on here. I just tested the following code on Chrome 23, Firefox 16, Opera 12.1 and IE9 and it works as expected. Feel free to post your code. <!DOCTYPE html> <html> <head> </head> <body> <script> window.location = "http://www.google.com/"; </script> </body> </html> | |
Re: Did you log on as a different user account? | |
Re: If you site has been hacked, the last thing you want is to publish or ask other users to visit your site until you have determined how and what has been done to your site. You may infect other users if there is malicious code being presented to your visitors. | |
Re: I am assuming that you have the adobe flash plug-in installed for those browsers... Can you post the revelant code so that we can review it? | |
Re: Need some clarification here... First, in line #1, your syntax is not correct. "width" is not a valid attribute of the div element. If you are trying to set the width with an inline style, you need to use the style attribute. For example... `<div style="width:1075px;">` Please explain what you … | |
Re: So in the click procedure... outside of the if..then conditional block... TextBox1.visible = false; LinkButton1.text = "Save"; | |
Re: I beleive that in another thread, I had suggested that you add the following to your styles... Add this on the first line. `body, html {margin:0;padding:0;height:100%;}` Tested in Chrome 23...  | |
Re: Not sure how technical you are, but if you installed a packet capturing application such as Wireshark, you would be able to see where the traffic is coming from (source IP address). You would then take this info and use WhoIs to see which orgination is using this IP. | |
Re: Did you find that this was not DNS related? The last I read from another post was that the latency cleared up when you configured IP rather than hostname(s). | |
Re: Yes, there are USB to Serial dongles you can buy online. These are used as you described since computers do not generally come with built in serial ports. | |
Re: If you do have flash installed, you may want to try to reset IE9 back to its default settings. Click on Internet Options, Advanced, Reset button. | |
Re: Post the code you have done so far and provide more details with regard to what you need help with. | |
Re: So these label.text values are being updated somewhere in your code, page load maybe. Can you call a procedure somewhere in the code you posted above to update their values? Or create a procedure that executes when the user hits the submit button to update the labels? | |
![]() | Re: I don't think you will see your own name. It would t make sense to endorse yourself. ![]() |
Re: There are quite a bit of free sliders you can download and incorporate into your web projects. I like the Nivo Slider. | |
Re: You can use Google Drive, Sheets. Provide access to the team members, then anyone of them will be able to update the spreadsheet in real time. | |
Re: What you need to do is map the public IP/port with the private IP/port. What is the port that your Internet users will use to access this web app? Is it port 80? If so, OK, then your users will simply open a browser and type http://yourDomainName.tld. Now, on your … | |
Re: @janetb... what you have implemented is common. As AleMonteiro mentioned, keep it as it, but create an additional style in your style sheet. `img.no-border { border: none; }` On the image element where you want to remove the border just apply that class directly. `<img src="#" class="no-border" />` The inline … | |
Re: You probably have to be someone important at Google. They do not share the details regarding their algorithms. | |
Re: Yes of course, you can use a single IP across multiple domains. As canadafred mentioned, there are plenty of websites that share an IP address. Having a shared IP address across multiple domain names **does not** negatively impact your SEO processes. | |
Re: Problem fixed? I dont see any extra space. There is no scrollbar so I assume you fixed it? | |
Re: You have the slider within a div that is within another div with an id of ="image-content-box". Looks fine to me also. Can you elaborate on... >throwing everything off and >run behind the top navigation | |
Re: It is generally recommended to switch from a workgroup to domain model after about 20 computers. The main reason and benefit is that with a domain controller on the network, you can centralize all of your user accounts and create other objects such as groups that you can easily reuse … | |
Re: The issue is not with the logic. I suspect if you simply do a `response.write("Hello World!")` it will work. Take a look at this asp.net posting that deals with attempting to execute an alert method. http://forums.asp.net/t/1051178.aspx/1 | |
Re: You will need something on the server to send a Content-Disposition header to set the file as an attachment, compress the images as zip files so the browser cant open it in another window. What web server application are you running this website on? Apache, IIS? | |
Re: So which part to do you need help on, building the SQL query, implementing the actual email message, or including the SQL results in the email body, or all of the above? Here is a reference you can take a look at with regard to sending email from ASP: [Sending … | |
Re: I looked at the source code, copied it to a local HTML file and the gallery div moves when I change the values in your style sheet. `div#gallery {position: absolute; top: 300px; right: -200000px; }` Where do you want to place it? | |
Re: Here are a few articles on Microsoft's site that talk about this issue and solutions for it. http://blogs.msdn.com/b/friis/archive/2010/06/09/system-security-securityexception-request-for-the-permission-of-type-system-web-aspnethostingpermission-failed.aspx http://blogs.msdn.com/b/narahari/archive/2010/06/03/system-security-securityexception-request-for-the-permission-of-type-system-web-aspnethostingpermission-system-version-2-0-0-0-culture-neutral-publickeytoken-b77a5c561934e089-failed.aspx http://forums.asp.net/t/1371394.aspx | |
Re: >the pictures and headers are not showing up anymore. Check the path to the images in your HTML code. They may not be pointing to the correct location. Feel free to post some of your revalent code and the structure of the directory. >Plus the php codes are displaying on … | |
Re: Your question is not very clear, at least not to me. You want to create a button that acts like a link? If so, that is just a styling thing. What do you mean by all of this? >But a field (in dreamweaver green transparent) where u can put up … | |
Re: Check your profile. Maybe you have `"Hide Member Avatars and Signatures?"` checked. |
The End.