Click here to Skip to main content
15,887,325 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how to catch the "gotfocus" or "lostfocus" event of a textbox in a web page. Pin
NeverHeardOfMe17-Nov-08 1:22
NeverHeardOfMe17-Nov-08 1:22 
GeneralRe: how to catch the "gotfocus" or "lostfocus" event of a textbox in a web page. Pin
souravghosh1817-Nov-08 1:28
souravghosh1817-Nov-08 1:28 
GeneralRe: how to catch the "gotfocus" or "lostfocus" event of a textbox in a web page. Pin
NeverHeardOfMe17-Nov-08 4:52
NeverHeardOfMe17-Nov-08 4:52 
QuestionAdding controls to the page Dynamically(Page.ParseControl) [modified] Pin
parry_p17-Nov-08 0:00
parry_p17-Nov-08 0:00 
Questionread XML threw API Pin
michael_jhons16-Nov-08 23:39
michael_jhons16-Nov-08 23:39 
AnswerRe: read XML threw API Pin
surender.m16-Nov-08 23:59
surender.m16-Nov-08 23:59 
GeneralRe: read XML threw API Pin
michael_jhons17-Nov-08 0:10
michael_jhons17-Nov-08 0:10 
GeneralRe: read XML threw API Pin
surender.m17-Nov-08 0:40
surender.m17-Nov-08 0:40 
sorry i didn't get u....

r u submitting postdata??
if yes provide the format of the post data.

if you want to submit post data you can create a weburi using webrequest object
and set the parameters like

WebRequest req = WebRequest.Create("URL to be accessed");
req.Method = "POST";
req.ContentType = "text/xml";
string str = "POST DATA";

StreamWriter sw = new StreamWriter(req.GetRequestStream());
sw.WriteLine(str);
sw.Close();
WebResponse res = req.GetResponse();

and res will contain response from the accessed URL.

Regards
surender
GeneralRe: read XML threw API Pin
michael_jhons17-Nov-08 1:17
michael_jhons17-Nov-08 1:17 
GeneralRe: read XML threw API Pin
Paddy Boyd17-Nov-08 1:38
Paddy Boyd17-Nov-08 1:38 
GeneralRe: read XML threw API Pin
michael_jhons17-Nov-08 1:41
michael_jhons17-Nov-08 1:41 
GeneralRe: read XML threw API Pin
Paddy Boyd17-Nov-08 1:44
Paddy Boyd17-Nov-08 1:44 
GeneralRe: read XML threw API Pin
michael_jhons17-Nov-08 1:57
michael_jhons17-Nov-08 1:57 
GeneralRe: read XML threw API Pin
michael_jhons17-Nov-08 2:19
michael_jhons17-Nov-08 2:19 
GeneralRe: read XML threw API Pin
surender.m17-Nov-08 17:11
surender.m17-Nov-08 17:11 
GeneralRe: read XML threw API Pin
michael_jhons17-Nov-08 21:00
michael_jhons17-Nov-08 21:00 
QuestionValidators are not working in live Pin
Abhijeetsenan16-Nov-08 23:23
Abhijeetsenan16-Nov-08 23:23 
AnswerRe: Validators are not working in live [modified] Pin
Arun Jacob17-Nov-08 0:27
Arun Jacob17-Nov-08 0:27 
AnswerRe: Validators are not working in live Pin
Anish Gopi17-Nov-08 0:35
sitebuilderAnish Gopi17-Nov-08 0:35 
QuestionHow to hide label ? Pin
kyi kyi16-Nov-08 22:47
kyi kyi16-Nov-08 22:47 
AnswerRe: How to hide label ? Pin
Anish Gopi16-Nov-08 23:12
sitebuilderAnish Gopi16-Nov-08 23:12 
GeneralRe: How to hide label ? Pin
kyi kyi17-Nov-08 14:18
kyi kyi17-Nov-08 14:18 
AnswerRe: How to hide label ? Pin
eyeseetee16-Nov-08 23:57
eyeseetee16-Nov-08 23:57 
GeneralRe: How to hide label ? Pin
kyi kyi17-Nov-08 14:18
kyi kyi17-Nov-08 14:18 
GeneralRe: How to hide label ? Pin
kyi kyi17-Nov-08 23:10
kyi kyi17-Nov-08 23:10 

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.