代码搜索结果

找到约 127,078 项符合 request 的代码

request.c

#include "opend.h" #include void request(char *buf, int nread, int fd) { int newfd; if (buf[nread-1] != 0) { sprintf(errmsg, "request not null terminated: %*.*s\n", nread, nread,

request.c

#include "opend.h" #include void request(char *buf, int nread, int clifd, uid_t uid) { int newfd; if (buf[nread-1] != 0) { sprintf(errmsg, "request from uid %d not null terminated

jsp里request变量列表.txt

作者:asp2001 email: asp2001@163.net 日期:2000-8-9 12:45:42

request.java

/* * project: RebecaSim * package: broker * file: Request.java * * version: 0.1 * date: 13.05.2005 * * This software is part of the diploma thesis "Ein adaptives Brokernetz * für Pub

e1061. getting a request header in a jsp page.txt

A JSP page can access the information in the request header by using the implicit object request. This example retrieves a few items in the request header: The request method is

e1053. getting a request parameter in a jsp page.txt

In a GET request, the request parameters are taken from the query string (the data following the question mark on the URL). For example, the URL http://hostname.com?p1=v1&p2=v2 contains two request pa

e1040. getting a request parameter in a servlet.txt

In a GET request, the request parameters are taken from the query string (the data following the question mark on the URL). For example, the URL http://hostname.com?p1=v1&p2=v2 contains two request pa

e496. setting ldap context request controls.txt

This example uses the JNDI/LDAP service provider to connect to an LDAP server on the local machine. It sets the context's request controls to be a server-side Sort control and then performs a list().

e1043. getting a request header in a servlet.txt

This example demonstrates how to get the value of a request header in either a GET or POST request. // See also e1035 The Quintessential Servlet // This method is called by the servle