Click here to Skip to main content
15,903,388 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionhow to capture content markup within an httpmodule? [modified] Pin
jszpila9-Jan-07 8:44
jszpila9-Jan-07 8:44 
AnswerRe: how to capture content markup within an httpmodule? Pin
Mike Ellison9-Jan-07 12:29
Mike Ellison9-Jan-07 12:29 
GeneralRe: how to capture content markup within an httpmodule? Pin
jszpila10-Jan-07 6:24
jszpila10-Jan-07 6:24 
QuestionWeb Service Pin
Rahithi9-Jan-07 8:02
Rahithi9-Jan-07 8:02 
AnswerRe: Web Service Pin
ednrgc9-Jan-07 8:24
ednrgc9-Jan-07 8:24 
GeneralRe: Web Service Pin
Rahithi9-Jan-07 8:46
Rahithi9-Jan-07 8:46 
GeneralRe: Web Service Pin
ednrgc9-Jan-07 8:48
ednrgc9-Jan-07 8:48 
GeneralRe: Web Service Pin
Rahithi9-Jan-07 8:55
Rahithi9-Jan-07 8:55 
not at all. i understand a bit about webservice.
i created one webservice. i add the web reference.
next i wrote this on my page:

public partial class mymathserviceclient : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{


}

protected void btnSubmit_Click(object sender, EventArgs e)
{
proxyMyMathService.MyMathService proxyMS = new proxyMyMathService.MyMathService();

double x = Convert.ToDouble(txtX.Text);
double y = Convert.ToDouble(txtY.Text);

double result = proxyMS.AddNumbers(x, y);

txtResult.Text = result.ToString();

}
}

stiil the webservice is directly running on the tempuri.org.

thanks,
Rahi

If you look at what you do not have in life, you don't have anything,
If you look at what you have in life, you have everything... "

QuestionSecurity Issue Pin
alexfromto9-Jan-07 7:02
alexfromto9-Jan-07 7:02 
AnswerRe: Security Issue Pin
ednrgc9-Jan-07 7:13
ednrgc9-Jan-07 7:13 
GeneralRe: Security Issue Pin
alexfromto9-Jan-07 7:47
alexfromto9-Jan-07 7:47 
QuestionAnyone know why a multi-threaded ASP.NET application would work in VS2005, but not on the production environment? Pin
travich9-Jan-07 6:36
travich9-Jan-07 6:36 
AnswerRe: Anyone know why a multi-threaded ASP.NET application would work in VS2005, but not on the production environment? Pin
ednrgc9-Jan-07 7:12
ednrgc9-Jan-07 7:12 
GeneralRe: Anyone know why a multi-threaded ASP.NET application would work in VS2005, but not on the production environment? Pin
travich9-Jan-07 8:30
travich9-Jan-07 8:30 
GeneralRe: Anyone know why a multi-threaded ASP.NET application would work in VS2005, but not on the production environment? Pin
ednrgc9-Jan-07 8:44
ednrgc9-Jan-07 8:44 
GeneralRe: Anyone know why a multi-threaded ASP.NET application would work in VS2005, but not on the production environment? Pin
travich9-Jan-07 9:01
travich9-Jan-07 9:01 
GeneralRe: Anyone know why a multi-threaded ASP.NET application would work in VS2005, but not on the production environment? Pin
travich9-Jan-07 9:36
travich9-Jan-07 9:36 
Questionusing Sessions between webservice and aspx Pin
guygo9-Jan-07 6:16
guygo9-Jan-07 6:16 
AnswerRe: using Sessions between webservice and aspx Pin
ednrgc9-Jan-07 7:11
ednrgc9-Jan-07 7:11 
GeneralRe: using Sessions between webservice and aspx Pin
guygo9-Jan-07 11:46
guygo9-Jan-07 11:46 
GeneralRe: using Sessions between webservice and aspx Pin
ednrgc10-Jan-07 1:33
ednrgc10-Jan-07 1:33 
GeneralRe: using Sessions between webservice and aspx Pin
guygo10-Jan-07 6:03
guygo10-Jan-07 6:03 
QuestionServer cannot set content type after HTTP headers have been sent Pin
DISP-Jol9-Jan-07 6:14
DISP-Jol9-Jan-07 6:14 
AnswerRe: The process cannot access the file Pin
ednrgc9-Jan-07 6:59
ednrgc9-Jan-07 6:59 
GeneralRe: The process cannot access the file Pin
Sebastian T Xavier9-Jan-07 19:15
Sebastian T Xavier9-Jan-07 19:15 

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.