Click here to Skip to main content
15,894,720 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to get mac address of a client system in asp.net Pin
Abhishek Sur17-Jan-10 21:23
professionalAbhishek Sur17-Jan-10 21:23 
GeneralRe: How to get mac address of a client system in asp.net Pin
mithun narayanan18-Jan-10 7:03
mithun narayanan18-Jan-10 7:03 
AnswerRe: How to get mac address of a client system in asp.net Pin
April Fans17-Jan-10 16:36
April Fans17-Jan-10 16:36 
GeneralRe: How to get mac address of a client system in asp.net Pin
mithun narayanan17-Jan-10 16:53
mithun narayanan17-Jan-10 16:53 
QuestionAdd multiple values from the textbox into one cell (column) in Gridview Pin
Nopo14-Jan-10 3:57
Nopo14-Jan-10 3:57 
AnswerRe: Add multiple values from the textbox into one cell (column) in Gridview Pin
Not Active14-Jan-10 4:46
mentorNot Active14-Jan-10 4:46 
QuestionDoes anyone use the gsoap Pin
Fired.Fish.Gmail14-Jan-10 2:39
Fired.Fish.Gmail14-Jan-10 2:39 
AnswerRe: Does anyone use the gsoap Pin
Fired.Fish.Gmail14-Jan-10 15:01
Fired.Fish.Gmail14-Jan-10 15:01 
The code is following, I need to count how much bandwidth that this program uses.

struct soap soapService;

soap_init(&soapService);
soapService.accept_timeout = 60;
soapService.recv_timeout = 60;
soapService.send_timeout = 60;
soapService.connect_timeout = 60;
int result = -1;
_ns1__QueryPerson queryPerson;
_ns1__QueryPersonResponse *queryPersonResponse;


const char* s1 = "fish";
std::string stdstr(s1);
queryPerson.name = &stdstr;
queryPersonResponse = new _ns1__QueryPersonResponse();

const char* server = "http://192.168.140.127/classmate/Service.asmx";
result = soap_call___ns2__QueryPerson(&soapService, server, "", &queryPerson, queryPersonResponse);

if(soapService.error)
{
soap_print_fault(&soapService,stderr);
result = soapService.error;
}
if (result == SOAP_OK)
{
cout <<"收到数据:[" << endl;
}
else
{
printf("soap error ,errcode = %d\n", result);
}
soap_destroy(&soapService);
soap_end(&soapService);
soap_done(&soapService);

delete queryPersonResponse;
QuestionDynamic Template control and value persistence Pin
Shivan Nandan14-Jan-10 1:43
Shivan Nandan14-Jan-10 1:43 
AnswerRe: Dynamic Template control and value persistence Pin
Shivan Nandan14-Jan-10 19:05
Shivan Nandan14-Jan-10 19:05 
GeneralRe: Dynamic Template control and value persistence Pin
Ashfield14-Jan-10 21:32
Ashfield14-Jan-10 21:32 
AnswerRe: Dynamic Template control and value persistence Pin
April Fans14-Jan-10 22:19
April Fans14-Jan-10 22:19 
GeneralRe: Dynamic Template control and value persistence Pin
Shivan Nandan14-Jan-10 22:28
Shivan Nandan14-Jan-10 22:28 
Question32 bit dll issue on 64 bit Production Server Pin
Jeneesh K. Velayudhan13-Jan-10 23:01
Jeneesh K. Velayudhan13-Jan-10 23:01 
AnswerRe: 32 bit dll issue on 64 bit Production Server Pin
Brij13-Jan-10 23:24
mentorBrij13-Jan-10 23:24 
GeneralRe: 32 bit dll issue on 64 bit Production Server Pin
Jeneesh K. Velayudhan17-Jan-10 18:18
Jeneesh K. Velayudhan17-Jan-10 18:18 
AnswerRe: 32 bit dll issue on 64 bit Production Server Pin
The Man from U.N.C.L.E.14-Jan-10 4:12
The Man from U.N.C.L.E.14-Jan-10 4:12 
GeneralRe: 32 bit dll issue on 64 bit Production Server Pin
Jeneesh K. Velayudhan17-Jan-10 18:23
Jeneesh K. Velayudhan17-Jan-10 18:23 
QuestionDeploy web application in to IIS 7 Pin
Sagar.H.Mistry13-Jan-10 20:08
Sagar.H.Mistry13-Jan-10 20:08 
AnswerRe: Deploy web application in to IIS 7 Pin
Sathesh Sakthivel13-Jan-10 21:37
Sathesh Sakthivel13-Jan-10 21:37 
AnswerRe: Deploy web application in to IIS 7 Pin
Brij13-Jan-10 23:08
mentorBrij13-Jan-10 23:08 
QuestionHow to make label's text H1 by setting up a font property Pin
Tina P13-Jan-10 16:01
Tina P13-Jan-10 16:01 
AnswerRe: How to make label's text H1 by setting up a font property Pin
Anurag Gandhi13-Jan-10 19:13
professionalAnurag Gandhi13-Jan-10 19:13 
QuestionStretching html table column will not fit Pin
dptalt13-Jan-10 9:09
dptalt13-Jan-10 9:09 
AnswerRe: Stretching html table column will not fit Pin
Not Active13-Jan-10 9:12
mentorNot Active13-Jan-10 9:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.