This file came from Planet-Source-Code.com...the home millions of lines of source code
You can view comments on this code/and or vote on it at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=58860&lngWId=1
The author may have retained certain copyrights to this code...please observe their request and the law by reviewing all copyright conditions at the above URL.
Myself graduation project content, asp access does the news issue system, myself carefully manufacture, satisfies the general graduation project the request, the manager password is wwwfox, supports on the picture to pass on the news, the news classification, the special news, in the station searches, myself intensely recommend
tServer task executes functions at low priority (254). serverSend
funtion is used to send a request to the tServer to execute a
function at the tServer s priority.
First tServer task executes the i() system call to print the summary
of tShell task. Next an address exception is caused in tServer
task by trying to execute a funtion at non-aligned word boundry.
As a result SIGBUS signal is raised automatically. Signals
(setjmp() and longjmp()) are used to allow the tServer task to
recover gracefully from an address error exception. For more
information about signals, please refer to sigLib manual pages.
Student status management system is development two aspects that typical information management system, IMS( MIS), its development includes primarily the background database creates with support and the front end applies the procedure.Creates to rise to the former request the consistency of data is strong with the integrity, the library that the safeness of data like.But request the latter very much to apply the procedure function complete, easy usage etc. characteristics.
<%@ LANGUAGE="VBSCRIPT" %>
<!--#include file="conn.asp" -->
<%
ProductClass_2=request("ProductClass_2")
set rs=server.createobject("adodb.recordset")
sqltext="select * from Product"
if request("Product_Name")<>"" then
sqltext=sqltext &" where Product_Name like %"& request("Product_Name") &"% "
else
sqltext=sqltext &" where Product_Name like %"& "" &"% "
end if
if request("Product_Class")<>"" then
sqltext=sqltext &" and Class_1 like %"& request("Product_Class") &"% "
end if