a website that's trying to scam you into giving your credit card number, e-mail, etc.
Is Java a Client or Server side scripting language?
Both. It runs on the browser but can request from a Server.
Similarly to Ajax the side is unclear. Client side is the best fit with requests.
How do you create a login page with user name and password fields?
It is quite simple to create a login page, it is simply a form input, if all the people hold the same username and password. If you want and I suspect you do, a unique service, then you will need to install a database. I have no experience of this.
Some programs require XML-structured data. But there are ways around that, so if you know that programs do not need XML-structured data, then no -- you do not need XML.
XML 4.0 is a version of XML that does not yet exist.
The latest version is 1.1, visit the w3c site to see the spec
Which is better to use while submitting a form GET method or POST method?
If your form has security items (like username, password) use POST method. Because post method is more secure. Otherwise you can use GET method. Also GET method is faster than POST method.
What is a frameset tag and its attributes?
The frameset tag is used to define the layout of a web page which uses frames. It defines how many frames, their sizes, and what pages get loaded in each one. A web page which uses frames actually calls for separate web pages to load in each frame. The attributes and further description are all listed here: http://devedge-temp.mozilla.org/library/manuals/1998/htmlguide/tags11.html#1294825
Hyperative is a state in the human body that kids have until they reach the age of 18. For EX. Samuel Johnson is the fastest kid in my class (Wilkinson and Howard) he drinks Gatorade everyday so it makes him have speed.So one day I was walking into the portable then he just was talking about some stuff. The I cussed to him in spainsh.Then in PE he was acting CRAZY so I just gave him the soft balls so he will be done from his state.So from now on I am Just taking procausin. (Greg Gutierrez wrote this on 5-18-09)
What is the difference between WebService and API?
web service is like advanced Urls and API is Programmed Interface. API contains classes and Interfaces just like a program. A web service is a form of API (Application Programming Interface). An API is used by a computer programmer to establish a link between software applications. This interface can take several forms, a web service is just one of these. There are several types of web service. SOAP (Simple Object Access Protocol) is one of the most common. The API takes the form of a service description (WSDL) which is used to automatically generate the program code which makes the connection.
Source code for notepad in java?
import java.awt.*;
import java.awt.event.*;
import java.awt.datatransfer.*;
import java.io.*;
public class Editor extends Frame
{
String filename;
TextArea tx;
Clipboard clip = getToolkit().getSystemClipboard();
Editor()
{
setLayout(new GridLayout(1,1));
tx = new TextArea();
add(tx);
MenuBar mb = new MenuBar();
Menu F = new Menu("file");
MenuItem n = new MenuItem("New");
MenuItem o = new MenuItem("Open");
MenuItem s = new MenuItem("Save");
MenuItem e = new MenuItem("Exit");
n.addActionListener(new New());
F.add(n);
o.addActionListener(new Open());
F.add(o);
s.addActionListener(new Save());
F.add(s);
e.addActionListener(new Exit());
F.add(e);
mb.add(F);
Menu E = new Menu("Edit");
MenuItem cut = new MenuItem("Cut");
MenuItem copy = new MenuItem("Copy");
MenuItem paste = new MenuItem("Paste");
cut.addActionListener(new Cut());
E.add(cut);
copy.addActionListener(new Copy());
E.add(copy);
paste.addActionListener(new Paste());
E.add(paste);
mb.add(E);
setMenuBar(mb);
mylistener mylist = new mylistener();
addWindowListener(mylist);
}
class mylistener extends WindowAdapter
{
public void windowClosing (WindowEvent e)
{
System.exit(0);
}
}
class New implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
tx.setText(" ");
setTitle(filename);
}
}
class Open implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
FileDialog fd = new FileDialog(Editor.this, "select File",FileDialog.LOAD);
fd.show();
if (fd.getFile()!=null)
{
filename = fd.getDirectory() + fd.getFile();
setTitle(filename);
ReadFile();
}
tx.requestFocus();
}
}
class Save implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
FileDialog fd = new FileDialog(Editor.this,"Save File",FileDialog.SAVE);
fd.show();
if (fd.getFile()!=null)
{
filename = fd.getDirectory() + fd.getFile();
setTitle(filename);
try
{
DataOutputStream d = new DataOutputStream(new FileOutputStream(filename));
String line = tx.getText();
BufferedReader br = new BufferedReader(new StringReader(line));
while((line = br.readLine())!=null)
{
d.writeBytes(line + "\r\n");
d.close();
}
}
catch(Exception ex)
{
System.out.println("File not found");
}
tx.requestFocus();
}
}
}
class Exit implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
System.exit(0);
}
}
void ReadFile()
{
BufferedReader d;
StringBuffer sb = new StringBuffer();
try
{
d = new BufferedReader(new FileReader(filename));
String line;
while((line=d.readLine())!=null)
sb.append(line + "\n");
tx.setText(sb.toString());
d.close();
}
catch(FileNotFoundException fe)
{
System.out.println("File not Found");
}
catch(IOException ioe){}
}
class Cut implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
String sel = tx.getSelectedText();
StringSelection ss = new StringSelection(sel);
clip.setContents(ss,ss);
tx.replaceRange(" ",tx.getSelectionStart(),tx.getSelectionEnd());
}
}
class Copy implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
String sel = tx.getSelectedText();
StringSelection clipString = new StringSelection(sel);
clip.setContents(clipString,clipString);
}
}
class Paste implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
Transferable cliptran = clip.getContents(Editor.this);
try
{
String sel = (String) cliptran.getTransferData(DataFlavor.stringFlavor);
tx.replaceRange(sel,tx.getSelectionStart(),tx.getSelectionEnd());
}
catch(Exception exc)
{
System.out.println("not string flavour");
}
}
}
public static void main(String args[])
{
Frame f = new Editor();
f.setSize(500,400);
f.setVisible(true);
f.show();
}
}
Are there any photo or image sharing websites which you can disable right clicking of your images?
No, this is a browser feature. Technically, it may be possibile to disable images by embedding them into another format -like java applets- or using java script to eliminate the menu (none of those solution are known to me in the real world).
How you compare and contrast overloading and overriding methods in java?
Method overloading is when you have multiple methods in a class that have the same name but a different signature. Method overriding is similar to method overloading, with a small difference. In overriding, a method in a parent class is overridden in the child class. The method in the child class will have the same signature as that of the parent class. Since the method in the child class has the same signature & name as the method of its parent class, it is termed as overriding. In situations where you may have to explicitly call the parent class method you can use the "super" keyword and for explicitly calling the current objects method you can use the "this" keyword.
How do I create a form which will then upload to a database that I can access in Microsoft Access?
Have your form's input insert into a database (SQL, Oracle, etc) then access that database through Access's ODBC connection.
How can you visually collapse functions in Dreamweaver?
When you select code, a set of collapse buttons is displayed next to the selection (Minus symbols in Windows; vertical triangles on the Macintosh). Click the buttons to collapse and expand the selection. When the code is collapsed, the collapse buttons change to an expand button (a Plus button in Windows; a horizontal triangle on the Macintosh). Sometimes, the exact fragment of code that you selected is not collapsed. Dreamweaver uses "smart collapse" to collapse the most common and visually pleasing selection. For example, if you selected an indented tag and then selected the indented spaces before the tag as well, Dreamweaver would not collapse the indented spaces, because most users would expect their indentations to be preserved. To disable smart collapse and force Dreamweaver to collapse exactly what you selected, hold down the Control key before collapsing your code. Also, a warning icon on collapsed code fragments is displayed if a fragment contains errors or code that is unsupported by certain browsers. You can also collapse the code by Alt‑clicking (Windows) or Option-clicking (Macintosh) one of the collapse buttons, or by clicking the Collapse Selection button in the Coding toolbar. # Select some code. # Select Edit > Code Collapse, and select any of options.
What computer hardware is used for web development?
I've been doing web development for more than 10 years and my ideal hardware setup would consist of - 1 Mac computer - Doesn't matter what kind, just used to debug browser compatibility issues. 1 Test Server - It doesn't have to have much memory or CPU. It will run the Web and Database servers. 1 Coding Workstation - At least a 2 GHz CPU and a minimum of 2 GB of memory. 1 Imaging Workstation - At least a 2 GHz CPU and a minimum of 3 GB of memory and a high end video card for multimedia and 3D editing.
Go to a website called W3 Schools and search for Box model, they provide a great example.
What are self-closing tags in HTML?
Self-closing tags are tags that don't have a ">" to close it.
These tags include:
Is there a free program that is as easy as Flash that can help you make an Avatar in Whirled?
Short answer. No. If you're wanting avatars that have all the extra bells and whistles of actions and states and walking transitions, the only viable source--because of it's use of AS3 coding--is Flash. However, if you're wishing just for free animation software that can be used to make an avatar that has one state, and drags/continues the state when walking. Or would like to try your hand at making animated furniture, www.doink.com offers free animating software that's run through the internet and allows you to download as a .swf file, that can then be uploaded to Whirled.
What is the maintenance of the virtual shopping basket?
When customers visit in to a transactional website and if they want to do any thing, it is important to identifying and authentication they details. Which means they need to log on to they account by entering Usre and Password. If the person is new user then he/she needs to create a new account by entering their personal details. After they enter the information that will be transmitted to database record. From on this stage customers or sellers no need to worries about the securitie, the tranaction will be full secure.
umar ahmed
u_4umar@hotmail.co.UK
however this answer has no reference to the question asked
XML stands for "eXtensable Markup Language." It is a method of marking information with tags very similar to HTML. By marking data with these tags, you can easily programatically parse data. Example: John 20 Male Sue 35 Female
What is the difference between XHTML and CSS?
XHTML and CSS are both languages that are used to make web pages.
XHTML is very similar to HTML and serves the same purpose. XHTML & HTML are both used to set the structure of the page - to define images, links, text, headlines, etc.
CSS (Cascading Style Sheets) is used to define the style of the page - colors, spacing, etc.
If you were to think of a web page as a person, XHTML would be the skeleton, and CSS would be the skin, clothing, make-up, etc.