Tag:the
-
Improved hyperlink effect in web design and production
Hyperlinks enable people to jump instantly from page to page, or site to site. Such power can create anxiety. Hyperlinks can make visitors jump from one page to another, or from one site to another. However, this frequent jump may cause anxiety. To help users browse with confidence, links should be absolutely clear and explicit. […]
-
Environment of Linux system jsp: Apache, Tomcat configuration
1.operationsystem RedHat Linux 9.0 2. Required software Apache 2.0.54 Download address http://apache.freelamp.com/httpd Download the file httpd-2.0.54 tar. gz Tomcat5.5.9 Download address http://apache.justdn.org/jakarta/tomcat-5/v5.5.9/bin/ Download the file jakarta-tomcat-5.5.9 tar. gz Mod_jk 1.2.14 Download address http://apache.justdn.org/jakarta/tomcat-connectors/jk/source/jk-1.2.14/ Download the file jakarta-tomcat-connectors-1.2.14-src tar. gz Jdk 1_5_0_04 Download address http://java.sun.com/j2se/1.5.0/download.jsp Download the file jdk-1_ 5_ 0_ 04-linux-i586-rpm. bin When downloading, save […]
-
English: a link mark ie will automatically complete href
English: a link will be automatically completed under ieWhilst working on the Ajax Link Tracker and MapSurface I have come across an inconsistency in how the href attribute is retrieved using DOM Scripting. The href attribute is different to other element attributes in that the value set can be relative to the context of the […]
-
Can you use the flash wmode attribute in the web page?
In web development, you may encounter the situation that flash blocks the elements in the page. No matter how to set the flash container and layer depth (Z-index), it is useless. The existing solution is to add the “wmode” attribute to the embedded or object tag inserted into flash and set it to wmode = […]
-
Fix MAC brew installation mongodb error: no available formula with the name ‘mongodb’
According to the official explanation of homebrew, mongodb is no longer open source and has been removed from homebrew It is because the commercialization of mongodb is not ideal, so it chooses closed source. Therefore, the brew installation methods before the source is closed will report errors. Many articles on the Internet are based on […]
-
Freebsd7.0 + Apache 2.2 + MySQL5 + PHP5 installation configuration
Installation of Apache 2.2.8First go to http://www.apache.org to download Apache 2.2.8 source package.decompression #tar zxvf httpd-2.2.8.tar.gzGet the httpd-2.2.8 folder #cd httpd-2.2.8To configure #./configure –prefix=/usr/local/apache –enable-so –enable-module=rewrite Compile #makeinstall #make installinstallation is completeTest the installation effect #cd /usr/local/apache #cd bin # ./apachectl start httpd: apr_sockaddr_info_get() failed for httpd: Could not reliably determine the server’s fully qualified […]
-
XML schema: DocBook XM
Being able to write documents and create them in a variety of output formats has been a dream of many development teams for many years. Through DocBookXMLIt can be realized. It not only maintains the semantic markup, but also maintains the control of data formatting and output.Control semantics can specify the chapters and paragraphs that […]
-
The SERVLET NAME ALREADY EXISTS. Solutions
The servlet name already exists. Solution When we create a servlet file with the same name, then delete it and build a servlet with the same name, we will report an error. Terms of settlementWeb. XML contains servlet mapping relationship, you need to manually delete the mapping relationship in web. xml. Delete, save and refresh […]
-
A Simple Method of Generating XML from Database
The first example method:1 SqlConnection conn = new SqlConnection(); 2 conn.ConnectionString = “Server=127.0.0.1;User ID=sa;Password=fdahgdrethj31313210212121; Database=northwind;Persist Security Info=True”; 3 conn.Open(); 4 SqlDataAdapter Da = new SqlDataAdapter (“select * from table”, conn);5 SqlCommandBuilder thisBulder = new SqlCommandBuilder(da); 6 DataSet ds = new DataSet(); 7 da.Fill(ds); 8 ds.WriteXml(@”C:\temp.xml”); The second example method:1 private void WriteXmlToFile(DataSet thisDataSet)2 {3 if […]