Click here to Skip to main content
15,919,778 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Retrieving excel columns to panel of textboxes Pin
Christian Graus27-Nov-08 10:01
protectorChristian Graus27-Nov-08 10:01 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
adarshyam27-Nov-08 11:37
adarshyam27-Nov-08 11:37 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
Christian Graus27-Nov-08 15:25
protectorChristian Graus27-Nov-08 15:25 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
adarshyam27-Nov-08 15:29
adarshyam27-Nov-08 15:29 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
Christian Graus27-Nov-08 15:45
protectorChristian Graus27-Nov-08 15:45 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
adarshyam27-Nov-08 18:55
adarshyam27-Nov-08 18:55 
GeneralRe: Retrieving excel columns to panel of textboxes Pin
adarshyam30-Nov-08 7:22
adarshyam30-Nov-08 7:22 
QuestionNavigate2 Pin
Sebastian T Xavier27-Nov-08 8:23
Sebastian T Xavier27-Nov-08 8:23 
Hi all,

I am working a desktop application, from which I need to invoke a web application. As the user have already signed into the desktop application, he doesn't want to login again in web application, so what i think is to pass a querystring to my webapplication & if the querystring is there I can bypass the login procedure.

Here is what I have tried for that...

InternetExplorer objie = new InternetExplorer();
String vHeaders = null;
String cPostData = null;
object vPost = null;
String strUserName = "test";
cPostData = "uname=" + strUserName + "&FromWindows=0";
vHeaders = "Content-Type: application/x-www-form-urlencoded" + "\n" + "\r";
vPost = ASCIIEncoding.ASCII.GetBytes(cPostData);
String strUrl = @"http://localhost/webreportingsystem/admin.aspx";
object objurl = new object();
object objNull = new object();
object objvPost = new object();
object objvHeaders = new object();
objurl = (object)strUrl;
objNull = null;
objvHeaders = (object)vPost;
objvHeaders = (object)vHeaders;
objie.Visible = true;
objie.Navigate2(ref objurl, ref objNull, ref objNull, ref objvPost, ref objvHeaders);


But nothing is happening for me. In my webapplication I can't receive the querystring values.
Can anybody guide me in this? Thanking you for your time !!!

Sebastian
AnswerRe: Navigate2 Pin
Christian Graus27-Nov-08 10:03
protectorChristian Graus27-Nov-08 10:03 
QuestionSet IsVisble Tag Property in SharePoint Data View WebPart based on query string Pin
Brilliant_Corners27-Nov-08 5:48
Brilliant_Corners27-Nov-08 5:48 
Questionconditional split in ssis Pin
l.laxmikant27-Nov-08 3:35
l.laxmikant27-Nov-08 3:35 
QuestionRe: conditional split in ssis Pin
Abhijit Jana27-Nov-08 3:38
professionalAbhijit Jana27-Nov-08 3:38 
QuestionNeed help from ASP.Net Developers Pin
Binoy Rajan27-Nov-08 2:54
Binoy Rajan27-Nov-08 2:54 
AnswerRe: Need help from ASP.Net Developers Pin
Abhijit Jana27-Nov-08 3:11
professionalAbhijit Jana27-Nov-08 3:11 
AnswerRe: Need help from ASP.Net Developers Pin
Paul Conrad27-Nov-08 5:32
professionalPaul Conrad27-Nov-08 5:32 
GeneralRe: Need help from ASP.Net Developers Pin
Binoy Rajan29-Nov-08 19:30
Binoy Rajan29-Nov-08 19:30 
QuestionHow to validate textboxes using java script code while using Master page and content Page Pin
Rameez Raja27-Nov-08 1:55
Rameez Raja27-Nov-08 1:55 
AnswerRe: How to validate textboxes using java script code while using Master page and content Page Pin
Abhijit Jana27-Nov-08 2:10
professionalAbhijit Jana27-Nov-08 2:10 
AnswerRe: How to validate textboxes using java script code while using Master page and content Page Pin
l.laxmikant27-Nov-08 3:31
l.laxmikant27-Nov-08 3:31 
Questionwebconfig error in webhosting server Pin
pavanip27-Nov-08 1:31
pavanip27-Nov-08 1:31 
AnswerRe: webconfig error in webhosting server Pin
Abhijit Jana27-Nov-08 1:43
professionalAbhijit Jana27-Nov-08 1:43 
GeneralRe: webconfig error in webhosting server Pin
pavanip27-Nov-08 2:00
pavanip27-Nov-08 2:00 
GeneralRe: webconfig error in webhosting server Pin
Abhijit Jana27-Nov-08 2:04
professionalAbhijit Jana27-Nov-08 2:04 
GeneralRe: webconfig error in webhosting server Pin
pavanip27-Nov-08 2:05
pavanip27-Nov-08 2:05 
GeneralRe: webconfig error in webhosting server Pin
Abhijit Jana27-Nov-08 2:13
professionalAbhijit Jana27-Nov-08 2:13 

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.