Click here to Skip to main content
15,890,609 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Using an ASP.NET User Web Control on a WSS WebPart Pin
ToddHileHoffer9-Feb-09 3:20
ToddHileHoffer9-Feb-09 3:20 
QuestionHow to fix this error? Pin
venkat86_ece9-Feb-09 2:08
venkat86_ece9-Feb-09 2:08 
AnswerRe: How to fix this error? Pin
ZZTop7779-Feb-09 4:24
ZZTop7779-Feb-09 4:24 
AnswerRe: How to fix this error? Pin
sepel9-Feb-09 4:26
sepel9-Feb-09 4:26 
AnswerRe: How to fix this error? Pin
Ranjit Viswakumar9-Feb-09 16:36
Ranjit Viswakumar9-Feb-09 16:36 
GeneralRe: How to fix this error? Pin
venkat86_ece9-Feb-09 18:42
venkat86_ece9-Feb-09 18:42 
QuestionValidating parameters and then passing as post parameter to another site Pin
JacquesDP9-Feb-09 1:36
JacquesDP9-Feb-09 1:36 
AnswerRe: Validating parameters and then passing as post parameter to another site Pin
Ray Wampler9-Feb-09 10:17
Ray Wampler9-Feb-09 10:17 
If the 3rd-party site accepts variables in the query string then it's very straightforward:

string _a = "abc";
string _b = "def";
string _c = "ghi";
string _d = "jkl";

string postToUrl = "http://www.RayWampler.com";

Response.Redirect(postToUrl + "?_a=" + _a + "&_b=" + _b + "&_c=" + _c + "&_d=" + _d);


If your values could contain special characters then you'll want to url encode them:

string _a = Server.UrlEncode("abc");


If the 3rd-party site would only accept form POSTs then you'll need to use a technique like the one described in this article:

Posting form data from ASP.NET page to another URL[^]

Ray Wampler
www.RayWampler.com

QuestionHow to add ASPNET user to my application? Pin
ASysSolvers9-Feb-09 1:19
ASysSolvers9-Feb-09 1:19 
QuestionUpdate the node value of XML file Pin
.NET- India 9-Feb-09 0:23
.NET- India 9-Feb-09 0:23 
AnswerRe: Update the node value of XML file Pin
sepel9-Feb-09 4:29
sepel9-Feb-09 4:29 
GeneralRe: Update the node value of XML file Pin
.NET- India 9-Feb-09 17:15
.NET- India 9-Feb-09 17:15 
GeneralRe: Update the node value of XML file Pin
sepel10-Feb-09 18:28
sepel10-Feb-09 18:28 
GeneralRe: Update the node value of XML file Pin
Priyagdpl3-Nov-09 19:13
Priyagdpl3-Nov-09 19:13 
QuestionChanging the state? Pin
Karthick_gc9-Feb-09 0:21
Karthick_gc9-Feb-09 0:21 
AnswerRe: Changing the state? Pin
_AK_9-Feb-09 0:28
_AK_9-Feb-09 0:28 
GeneralRe: Changing the state? Pin
Karthick_gc9-Feb-09 0:47
Karthick_gc9-Feb-09 0:47 
AnswerRe: Changing the state? Pin
Sneha Bisht9-Feb-09 0:59
Sneha Bisht9-Feb-09 0:59 
GeneralRe: Changing the state? Pin
Karthick_gc9-Feb-09 1:10
Karthick_gc9-Feb-09 1:10 
GeneralRe: Changing the state? Pin
J4amieC9-Feb-09 3:31
J4amieC9-Feb-09 3:31 
AnswerRe: Changing the state? Pin
sepel9-Feb-09 4:32
sepel9-Feb-09 4:32 
QuestionChange colour of click link [modified] Pin
kishorg18-Feb-09 23:55
kishorg18-Feb-09 23:55 
AnswerRe: Change colour of click link Pin
Guffa9-Feb-09 3:12
Guffa9-Feb-09 3:12 
AnswerRe: Change colour of click link Pin
sepel9-Feb-09 4:35
sepel9-Feb-09 4:35 
AnswerRe: Change colour of click link Pin
Ranjit Viswakumar9-Feb-09 16:40
Ranjit Viswakumar9-Feb-09 16:40 

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.