5,277 Posted Topics
Re: >I mean, does is make any difference what email provider I'm trying to forward the email to, or is it irrelevant? I'd like it to go to a gmail address Yes it matters. Your email provider may or may not allow you to send email, unauthenticated on port 25. Some … | |
Re: PHP is server side, styling is happening client side on the rendered HTML. In any event if you want to apply a fixed width to the table cell, try applying this style to the table element. table { table-layout:fixed; } | |
Re: I think your logic is working OK. I am not sure why you are using a form in this case. You really dont want the form to post. Here is a modified version that appears to be working as expected. <body> <label id="no1">Number 1</label> <input type="text" id="num1"/> <label id="no2">Number 2</label> … | |
Re: >multiple routers? mean that i cant have 2 access point connected to the same router ? Yes, of course. The access point is a layer 2 device. there is no routing happening with an access point. The access point is bridging a wireless and wired network together. >the same network … | |
Re: >Is there any chance that faulty hardware (router, switches, NICs) or bad drivers can cause packet duplication or packet corruption Yes, there are a lot of reasons why packets would be re-transmitted on the network. A faulty switch port can easily cause CRC errors. Bad cables, cross-talk, etc... | |
Re: So what i would recommend is that you do use the master page, but think about another way to modify the whats in the navigation menu depending on what page you are on. You have two options.. do this server side or client side. If you do this server side, … | |
Re: Have you tried using Safari's debugging tools such as the [console](https://developer.apple.com/library/IOs/documentation/AppleApplications/Conceptual/Safari_Developer_Guide/Console/Console.html)? | |
Re: Ok, so if you are willing to give up the ordinal suffix, all of the code above can be replaced with one line of code. Simply place this link of code in your Page Load event block (in aspx.vb file) LblDate.Text = DateTime.Now.ToString("MMMM dd, yyyy") If you are interested in … | |
Re: The implementation of your table doesnt seem to be correct. For example, i see you are trying to start a new row on line 10, but again on line 15, then you close the table on line 21, but are trying to close a row on 23. OPen this page … | |
Re: Im not sure if Azure is free. They do have a free trial.. http://azure.microsoft.com/en-us/pricing/details/websites/ If you are looking for free asp.net hosting, i have a free account with somee that i use for testing. its limited but for a small asp.net web application, should be adequate. https://somee.com/FreeAspNetHosting.aspx The free site … | |
Re: That's because the VPN session is encapsulating all of the packets to and from the client and VPN server. If you take a packet trace you will see that there will not be any RDP related packets. All of the packets will be VPN related. Think of VPN was a … | |
Re: LblDate looks fine to me, unless you've modified some other parts of the file such as the class information (partial class). The aspx and aspx.vb are tied together by this partial class info. Also I dont recognize this.. `Request("Name")`. What is this referring to? Do you have a subroutine called … | |
Re: PHP is a server-side scripting language. If you need to control printing, that's going to be handled client side. For example, you can include a button on your page, or an icon of a printer that lauches the printer controls of the user's PC. What you need to do is … | |
![]() | |
Re: It would help if you can be a bit more descriptive about your question related to your sample code. just dont assume that someone is going to read your title, look at your code and provide you with the correct response. also, moving this thread to java since you had … | |
Re: Being able to see the HTML source code would make it easier, at least for me. Is this site online? | |
Re: Which part of your question do you need help with? rather than copying/pasting your assignment, can you take a moment to structure your question in a manner that we can understand 1) what is the specific question you need help with.. 2) what do you not understand about the question... … | |
Re: >first of all are there any importance of using a client/server? client/server design is important if you want a two hosts to communicate with each other on a network. client/server is a very generic term. You have to be more specific with your questions. | |
Re: With the asp.net validators, you should have all of your bases covered. Overtime, you'll find the custom validator to be your friend once you learn a bit if regex. | |
Re: Sounds like the browser caching issue? If I can suggest... You may want to first create a master page. The master page is a special asp.net page that is going to help you set up a consistent look and feel and this page will contain the stylesheet and "wrapper" for … | |
Re: According to your sample code in your post, you are positioning your controls. Take a look at the inline styles you applied. | |
Re: > What could happen in terms of security, possible threats? Are those other locations physically secured? >I suppose that because the computers are from different locations, it would make it easier for a hacker to get access? Not necessarily...what if the remote location is more secured than your primary location? … | |
Re: Are you decimating from a vendor supplied media or from image you created? | |
Re: I think a great way to gain experience is to become very involved helping others with their problems. For example, on this site, you'll find quite a bit of PHP questions from a lot of members. Try to solve the problems. Try helping others through the process of solving problems. … | |
Re: Yes you would only have one subroutine handling the page load event. Move the username.Focus() code to the page load routing you are keeping. Within the subroutine, you need to determine where you want that code to run. It can be the first, last line or anywhere in that block … | |
Re: Microsoft Visual Studio What is your favorite type of beverage? | |
Re: For you to reference that label control using the reference "lblResult", you are going to have to add the following attribute on the control (in the aspx page). ClientIDMode="Static" The reason is because if you look at your html source from the browser, you will note that asp.net will generate … | |
Re: Hello- To access a control in the master page, here is one approach. The code isnt tested, just writing from memory.. VB.NET Dim cph As ContentPlaceHolder = DirectCast(Me.Master.FindControl("ContentPlaceHolder1"), ContentPlaceHolder) Dim hyp As Hyperlink = DirectCast(cph.FindControl("hyperlinkId"), Hyperlink) hyp.Visible = True C# (for anyone else that may come accross this) ContentPlaceHolder cph … | |
Re: The server is hosted on a private network and if this network is connected to the Internet, there is a public IP assigned to the WAN interface of the gateway device (router). What you need to do is set up port forwarding on this router to map the public IP … | |
Re: Just about any device out there is going to satisfy the office productivity apps and browsing. More importantly, you may want to consider looking what are the warranty and support options provided by the different laptop vendors. The main reason is that, in my opinion, support is key for those … | |
Re: If the printer has a network interface wired or wireless, then connect it as you would any other network device. If you have DHCP services on the network, it will get an IP address. If you don't have a LCD panel on the printer to see the IP, you should … |
The End.