Click here to Skip to main content
15,903,540 members
Home / Discussions / C#
   

C#

 
QuestionVideo to FLV with c#? Pin
jafingi30-Jul-07 22:56
jafingi30-Jul-07 22:56 
AnswerRe: Video to FLV with c#? Pin
ekynox30-Jul-07 23:09
ekynox30-Jul-07 23:09 
QuestionPOST method Pin
suck12330-Jul-07 22:39
suck12330-Jul-07 22:39 
AnswerRe: POST method Pin
Guffa31-Jul-07 0:23
Guffa31-Jul-07 0:23 
GeneralRe: POST method Pin
suck12331-Jul-07 12:17
suck12331-Jul-07 12:17 
AnswerRe: POST method Pin
Guffa31-Jul-07 22:40
Guffa31-Jul-07 22:40 
GeneralRe: POST method Pin
suck12331-Jul-07 23:22
suck12331-Jul-07 23:22 
AnswerRe: POST method Pin
Guffa1-Aug-07 0:31
Guffa1-Aug-07 0:31 
The user name and password that you are providing are not correct.

Perhaps you are using something completely different as user name and password? If the code that you are using differs from the code that you are showing, you should mention it. It's impossible for someone else to see an error in code that you don't show.

If the user name and password contains different characters, they may need to be url encoded:

strNewValue = "login_form_username=" + Server.UrlEncode("user") + "&login_form_password=" + Server.UrlEncode("haslo");


When a form is posted, the value of the button used to post the form is also included in the data. You might need to include the value for the button for the code to react to the posted data.

---
single minded; short sighted; long gone;

GeneralRe: POST method Pin
suck1231-Aug-07 1:00
suck1231-Aug-07 1:00 
AnswerRe: POST method Pin
Guffa1-Aug-07 4:36
Guffa1-Aug-07 4:36 
GeneralRe: POST method Pin
suck1231-Aug-07 9:08
suck1231-Aug-07 9:08 
AnswerRe: POST method Pin
Guffa1-Aug-07 11:54
Guffa1-Aug-07 11:54 
GeneralRe: POST method Pin
suck1231-Aug-07 12:04
suck1231-Aug-07 12:04 
AnswerRe: POST method Pin
Guffa1-Aug-07 12:08
Guffa1-Aug-07 12:08 
GeneralRe: POST method Pin
suck1231-Aug-07 12:18
suck1231-Aug-07 12:18 
AnswerRe: POST method Pin
Guffa2-Aug-07 5:06
Guffa2-Aug-07 5:06 
GeneralRe: POST method [modified] Pin
suck1232-Aug-07 5:07
suck1232-Aug-07 5:07 
AnswerRe: POST method Pin
Guffa2-Aug-07 6:35
Guffa2-Aug-07 6:35 
GeneralRe: POST method Pin
suck1232-Aug-07 7:59
suck1232-Aug-07 7:59 
AnswerRe: POST method Pin
Guffa4-Aug-07 0:53
Guffa4-Aug-07 0:53 
GeneralRe: POST method Pin
suck1234-Aug-07 1:21
suck1234-Aug-07 1:21 
AnswerRe: POST method Pin
Guffa4-Aug-07 5:48
Guffa4-Aug-07 5:48 
GeneralRe: POST method Pin
suck1234-Aug-07 7:32
suck1234-Aug-07 7:32 
QuestionHow declare event in C# class ? ? ? [modified] Pin
Yanshof30-Jul-07 21:43
Yanshof30-Jul-07 21:43 
AnswerRe: How decline event in C# class ? ? ? Pin
originSH30-Jul-07 21:54
originSH30-Jul-07 21:54 

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.