最受歡迎的Joomla 社區(qū)用戶管理收費(fèi)插件 Community Builder 1.2 RC2 的電子書,僅提供給付費(fèi)會(huì)員 Community Builder suite (CB) extends the Joomla! user management system. Key features: extra fields in profile, enhanced registration workflows, user lists, connection paths between users, admin defined tabs and user profiles, image upload, front-end workflow management, integration with other components, like PMS, Newsletter, Forum, Galleries. Release 1.1 is compatible with all Joomla! 1.0.x (including 1.0.15) and Mambo 4.5.2-4.6.4. New CB version 1.2 RC brings Joomla 1.5 native compatibility (and keeping Joomla 1.0.x and Mambo 4.5.2-4.6.4 native compatibility), multi-criteria user searches, full field controls of core fields, ajax email and username checkers, new lost username/password Form and many more features and fixes. Please see announcement on our homepage.
標(biāo)簽: Community Builder Joomla 1.2
上傳時(shí)間: 2016-10-20
上傳用戶:王者A
精致、漂亮、實(shí)用的日歷選擇代碼,Calendar is a Javascript class that adds accessible and unobtrusive date-pickers to your Form elements. This class is a compilation of many date-pickers I have implemented over the years and has been completely re-written for Mootools. I have tried to include all the features that have been most useful while streamlining the class itself to keep it as small as possible. Use the links below to see what features are available in Calendar and how it might enhance the accessibility, usability and validation of Form elements on your website.
標(biāo)簽: 代碼
上傳時(shí)間: 2014-01-04
上傳用戶:cc1
為避免有心人士利用軟體搜刮網(wǎng)頁上的Email,小弟製作了這個(gè)使用Jmail的線上寄信程式,將您網(wǎng)站的Email隱藏在Jmail的程式中。 優(yōu)點(diǎn): 1.將Email隱藏在程式中,可避免Email被軟體搜刮。 2.透過Jmail程式來線上寄信,不用開啟Outlook等軟體。 3.使用Request.Form來紀(jì)錄欄位值,無需資料庫,即時(shí)傳送訊息。 4.使用javascript語法限制所有欄位必填。 缺點(diǎn): 1.網(wǎng)站空間必需支援Jmail程式。 程式說明: 1.contact.asp(留言頁) 2.contact_save.asp(Jmail線上寄信程式) 3.style.css(CSS樣式表檔) 4.images(圖片資料夾) 修改方式: 1.可自行在contact.asp新增欄位,或修改必填欄位的javascript語法(預(yù)設(shè)全部欄位必填)。 2.在contact_save.asp修改您的郵件伺服器位址、寄件者名稱、信件主旨、收件者的Email(通常是網(wǎng)站的Email)
標(biāo)簽: Email
上傳時(shí)間: 2014-01-02
上傳用戶:hgy9473
文件說明java模式,The CustomerFacade class offers a higher level business service in the Form of the saveCustomerData method. Instead of interacting with each of the subsystem components directly, the client AccountManager can make use of the higher level, more simplified interface offered by the CustomerFacade object to validate and save the input customer data.
上傳時(shí)間: 2016-12-10
上傳用戶:kernaling
自動(dòng)投票程序: web 控件操作例程,使用的技術(shù)包括: 瀏覽器視圖的使用 網(wǎng)頁Form及input按鈕的讀寫以及自動(dòng)提交Form 定時(shí)器的使用 投票結(jié)果查看網(wǎng)址: http://www.scient.com.cn/picCountrywide.asp?province=&city=&page=1 默認(rèn)投票對象是: 照片編號(hào):630 姓 名:王丙乾 年 齡:1歲7個(gè)月 參賽項(xiàng)目:大力王 可以自己修改不同的投票對象為他進(jìn)行自動(dòng)投票 最后編譯環(huán)境是vs2008
上傳時(shí)間: 2016-12-22
上傳用戶:cuibaigao
菜單遍歷程序,應(yīng)用程序中有個(gè)menustrip菜單,遍歷菜單下的所有菜單及所有Form、Form中的控件,并把所有窗體跟控件顯示到一個(gè)treeview中的相應(yīng)的菜單名下
上傳時(shí)間: 2014-01-13
上傳用戶:yzy6007
Linux was first released into an unsuspecting world in the summer of 1991. Initially the spare-time hobby of a Finnish computer scientist by the name of Linus Torvalds, Linux was at first accessible only in software source code Form to those with enough expertise to build and install it. Early enthusiasts (most also developers themselves by necessity) exploited the growth of the Internet in the early 1990s as a means to build online communities and drive development forward. These communities helped to build the first Linux software distributions, containing all the software components needed to install and use a Linux system without requiring users to be technical experts.
標(biāo)簽: unsuspecting spare-time Initially the
上傳時(shí)間: 2013-12-12
上傳用戶:dianxin61
Tristar Flash dodges saves the material, mainly introduced Tristar dodges most newly saves the chip use, the working voltage, the capacity and the seal Form.
標(biāo)簽: Tristar dodges saves introduced
上傳時(shí)間: 2017-02-14
上傳用戶:685
Description The art galleries of the new and very futuristic building of the Center for Balkan Cooperation have the Form of polygons (not necessarily convex). When a big exhibition is organized, watching over all of the pictures is a big security concern. Your task is that for a given gallery to write a program which finds the surface of the area of the floor, from which each point on the walls of the gallery is visible. On the figure 1. a map of a gallery is given in some co-ordinate system. The area wanted is shaded on the figure 2.
標(biāo)簽: Description futuristic galleries the
上傳時(shí)間: 2017-02-17
上傳用戶:1427796291
Input : A set S of planar points Output : A convex hull for S Step 1: If S contains no more than five points, use exhaustive searching to find the convex hull and return. Step 2: Find a median line perpendicular to the X-axis which divides S into SL and SR SL lies to the left of SR . Step 3: Recursively construct convex hulls for SL and SR. Denote these convex hulls by Hull(SL) and Hull(SR) respectively. Step 4: Apply the merging procedure to merge Hull(SL) and Hull(SR) together to Form a convex hull. Time complexity: T(n) = 2T(n/2) + O(n) = O(n log n)
標(biāo)簽: contains Output convex planar
上傳時(shí)間: 2017-02-19
上傳用戶:wyc199288
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1