5,277 Posted Topics

Member Avatar for Violet_82

>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 …

Member Avatar for Violet_82
0
550
Member Avatar for OtepTheThird

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; }

Member Avatar for OtepTheThird
0
116
Member Avatar for ariflawsc
Member Avatar for ZeroEddy

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> …

Member Avatar for ZeroEddy
0
464
Member Avatar for man.chester.581

>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 …

Member Avatar for bagpa
-1
131
Member Avatar for Raheeno
Member Avatar for ktsangop

>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...

Member Avatar for Khaled_6
0
2K
Member Avatar for Volkan_2
Member Avatar for Violet_82

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, …

Member Avatar for Violet_82
0
401
Member Avatar for SimonIoa

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)?

Member Avatar for JorgeM
0
484
Member Avatar for David_50
Member Avatar for Blueie

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 …

Member Avatar for JorgeM
0
181
Member Avatar for Rauf sial
Member Avatar for Sarfarazkhan22
Member Avatar for Ostsee
Member Avatar for engrjd91

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 …

Member Avatar for JorgeM
0
161
Member Avatar for Violet_82

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 …

Member Avatar for JorgeM
0
682
Member Avatar for patkim

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 …

Member Avatar for rch1231
0
261
Member Avatar for PawelBujak
Member Avatar for Blueie

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 …

Member Avatar for BMXDad
0
198
Member Avatar for praba_web

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 …

Member Avatar for cereal
0
11K
Member Avatar for sergio_pb
Member Avatar for John_81
Member Avatar for Trevor_4

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 …

Member Avatar for Trevor_4
0
122
Member Avatar for london-G

Being able to see the HTML source code would make it easier, at least for me. Is this site online?

Member Avatar for JorgeM
0
215
Member Avatar for asareakoto.daniel

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... …

Member Avatar for JorgeM
0
331
Member Avatar for asareakoto.daniel

>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.

Member Avatar for JorgeM
0
64
Member Avatar for Violet_82

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.

Member Avatar for Violet_82
0
238
Member Avatar for Violet_82

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 …

Member Avatar for BMXDad
0
330
Member Avatar for sana.f.qureshi_1

According to your sample code in your post, you are positioning your controls. Take a look at the inline styles you applied.

Member Avatar for sana.f.qureshi_1
0
581
Member Avatar for henry45
Member Avatar for lester2020
Member Avatar for soomro_moon
Member Avatar for Shiksha
Member Avatar for Olga_2
Member Avatar for london-G

> 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? …

Member Avatar for london-G
0
204
Member Avatar for scottys623
Member Avatar for Ripster

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. …

Member Avatar for veedeoo
0
150
Member Avatar for Blueie

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 …

Member Avatar for Blueie
0
270
Member Avatar for <M/>
Member Avatar for Bensirpent07
3
1K
Member Avatar for mary lu
Member Avatar for jeong.minu
Member Avatar for Blueie

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 …

Member Avatar for JorgeM
0
125
Member Avatar for minhaajmuntasir.edoo

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 …

Member Avatar for JorgeM
0
87
Member Avatar for runicajame
Member Avatar for verzipkhan
Member Avatar for toniksystems

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 …

Member Avatar for rch1231
0
198
Member Avatar for lorenzoDAlipio
Member Avatar for Violet_82

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 …

Member Avatar for oriclon
1
132
Member Avatar for mattkings

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 …

Member Avatar for R1sat
0
227

The End.