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

ASP.NET

 
GeneralRe: How to info about current logged in user in ASP.NET2.0 Pin
salon10-Mar-08 1:40
salon10-Mar-08 1:40 
GeneralRe: How to info about current logged in user in ASP.NET2.0 Pin
salon10-Mar-08 1:45
salon10-Mar-08 1:45 
GeneralRe: How to info about current logged in user in ASP.NET2.0 Pin
N a v a n e e t h10-Mar-08 1:52
N a v a n e e t h10-Mar-08 1:52 
GeneralRe: How to info about current logged in user in ASP.NET2.0 Pin
salon10-Mar-08 2:19
salon10-Mar-08 2:19 
GeneralRe: How to info about current logged in user in ASP.NET2.0 Pin
salon10-Mar-08 19:01
salon10-Mar-08 19:01 
AnswerRe: How to info about current logged in user in ASP.NET2.0 Pin
Not Active10-Mar-08 2:54
mentorNot Active10-Mar-08 2:54 
AnswerRe: How to info about current logged in user in ASP.NET2.0 Pin
Christian Graus10-Mar-08 10:51
protectorChristian Graus10-Mar-08 10:51 
GeneralAjax (Javascript) with ASP.NET communication Problem Pin
dipak.dipak10-Mar-08 0:29
dipak.dipak10-Mar-08 0:29 
I just need to get data, "POST" from the client side (by javascript with send method) in the page asp.net page with C# code. i have used:

var xmlHttp = GetXmlHttpObject();
xmlHttp.open("POST","SaveInfo.aspx",true);
var args = "id=" + ID + "&name=" + Name + "&sex=" + Sex + "&age=" + Age;

xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlHttp.setRequestHeader("Content-length", args.length);
xmlHttp.setRequestHeader("Connection", "close");

xmlHttp.onreadystatechange = function theStateChanged()
{
alert(xmlHttp.status);
if (xmlHttp.readyState==4 && xmlHttp.status==200)
{
alert("Successfully Saved");
}
}
xmlHttp.Send(args);

So, this is the code.
I want to access the args from the page SaveInfo.aspx . how can access that to save those on the database using C# code on this page.

Please help me.

Dipak

GeneralRe: Ajax (Javascript) with ASP.NET communication Problem Pin
J a a n s10-Mar-08 0:37
professionalJ a a n s10-Mar-08 0:37 
Generalfont-family Pin
meghamaharshi9-Mar-08 23:58
meghamaharshi9-Mar-08 23:58 
QuestionRe: font-family Pin
Vasudevan Deepak Kumar10-Mar-08 0:18
Vasudevan Deepak Kumar10-Mar-08 0:18 
GeneralRe: font-family Pin
meghamaharshi10-Mar-08 2:43
meghamaharshi10-Mar-08 2:43 
GeneralRe: font-family Pin
Krazy Programmer10-Mar-08 0:18
Krazy Programmer10-Mar-08 0:18 
GeneralRe: font-family Pin
Chetan Patel10-Mar-08 0:22
Chetan Patel10-Mar-08 0:22 
QuestionCan I assign DataSource of GridView to DataTable/DataSet/DataView???? Pin
N a r e s h P a t e l9-Mar-08 23:49
N a r e s h P a t e l9-Mar-08 23:49 
AnswerRe: Can I assign DataSource of GridView to DataTable/DataSet/DataView???? Pin
Chetan Patel10-Mar-08 0:24
Chetan Patel10-Mar-08 0:24 
Generalsearch page Pin
eyeseetee9-Mar-08 23:47
eyeseetee9-Mar-08 23:47 
GeneralRe: search page Pin
Christian Graus10-Mar-08 10:52
protectorChristian Graus10-Mar-08 10:52 
Generalusing asp opening an acrobat file Pin
maruthi9-Mar-08 23:44
maruthi9-Mar-08 23:44 
GeneralRe: using asp opening an acrobat file Pin
eyeseetee9-Mar-08 23:50
eyeseetee9-Mar-08 23:50 
GeneralRe: using asp opening an acrobat file Pin
N a v a n e e t h10-Mar-08 0:03
N a v a n e e t h10-Mar-08 0:03 
GeneralRe: using asp opening an acrobat file Pin
eyeseetee10-Mar-08 0:06
eyeseetee10-Mar-08 0:06 
GeneralRe: using asp opening an acrobat file Pin
N a v a n e e t h10-Mar-08 1:46
N a v a n e e t h10-Mar-08 1:46 
GeneralRe: using asp opening an acrobat file Pin
Vasudevan Deepak Kumar10-Mar-08 0:20
Vasudevan Deepak Kumar10-Mar-08 0:20 
GeneralUpdate doesn't work with Tables in GridView ItemTemplate Pin
mastoj9-Mar-08 23:38
mastoj9-Mar-08 23:38 

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.