Click here to Skip to main content
15,881,204 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Find Control Pin
saini arun27-Sep-08 8:23
saini arun27-Sep-08 8:23 
GeneralRe: Find Control Pin
Assaf8227-Sep-08 12:25
Assaf8227-Sep-08 12:25 
Questionlinkbutton Pin
UD(IA)27-Sep-08 2:15
UD(IA)27-Sep-08 2:15 
AnswerRe: linkbutton Pin
Paul Conrad27-Sep-08 5:33
professionalPaul Conrad27-Sep-08 5:33 
AnswerRe: linkbutton Pin
saini arun27-Sep-08 8:24
saini arun27-Sep-08 8:24 
QuestionIntegrated Windows autentication not working??? Pin
Nada Adel27-Sep-08 0:21
Nada Adel27-Sep-08 0:21 
Questionquerystring Pin
UD(IA)26-Sep-08 22:30
UD(IA)26-Sep-08 22:30 
AnswerRe: querystring Pin
snouto26-Sep-08 22:45
snouto26-Sep-08 22:45 
hello...

you can set a query string by padding it to the url you want your user to be redirected to for example

at page 1
=========
<br />
void button1_click (object sender , EventArgs e)<br />
{<br />
    Response.Redirect("page2.aspx?username="+textbox1.text+"&password="+textbox2.text);<br />
}<br />


now at page2
===========
you can access those query string data by accessing the query string request at the page2 as follows

at page 2
========
<br />
void Page_Load(object sender , EventArgs e)<br />
{<br />
    if(Request.QueryString["username"] != null && Request.QueryString["password"] != null)<br />
{<br />
        //do something with those querystring values <br />
        string username = Request.QueryString["usename"];<br />
        string  password = Request.QueryString["password"];<br />
}<br />
<br />
}<br />


Human knowledge belongs to the world.

Questionhandle a db null value Pin
Meax26-Sep-08 22:00
Meax26-Sep-08 22:00 
AnswerRe: handle a db null value Pin
snouto26-Sep-08 22:57
snouto26-Sep-08 22:57 
GeneralRe: handle a db null value Pin
Meax26-Sep-08 23:24
Meax26-Sep-08 23:24 
GeneralRe: handle a db null value Pin
AlexeiXX327-Sep-08 17:15
AlexeiXX327-Sep-08 17:15 
QuestionLogic for Attendance System Pin
Milind Panchal26-Sep-08 21:47
Milind Panchal26-Sep-08 21:47 
AnswerRe: Logic for Attendance System Pin
sumanth Reddy26-Sep-08 22:39
sumanth Reddy26-Sep-08 22:39 
AnswerRe: Logic for Attendance System Pin
Paul Conrad27-Sep-08 5:34
professionalPaul Conrad27-Sep-08 5:34 
GeneralRe: Logic for Attendance System Pin
leckey27-Sep-08 13:37
leckey27-Sep-08 13:37 
GeneralRe: Logic for Attendance System Pin
Paul Conrad27-Sep-08 14:13
professionalPaul Conrad27-Sep-08 14:13 
GeneralRe: Logic for Attendance System Pin
leckey27-Sep-08 14:54
leckey27-Sep-08 14:54 
GeneralRe: Logic for Attendance System Pin
Paul Conrad27-Sep-08 17:44
professionalPaul Conrad27-Sep-08 17:44 
QuestionSeerver Controls.. Pin
Jamal Abdul Nasir26-Sep-08 21:29
Jamal Abdul Nasir26-Sep-08 21:29 
QuestionProblem visual basic 'exe' run on IIS through asp.net Pin
Rinki Mukheraji26-Sep-08 21:12
Rinki Mukheraji26-Sep-08 21:12 
QuestionAJAX CALL Pin
CrazyCoder2626-Sep-08 21:11
CrazyCoder2626-Sep-08 21:11 
AnswerRe: AJAX CALL Pin
AlexeiXX327-Sep-08 17:38
AlexeiXX327-Sep-08 17:38 
AnswerRe: AJAX CALL Pin
Prasanna Kumar Pete28-Sep-08 22:33
Prasanna Kumar Pete28-Sep-08 22:33 
Questionhow to call classes in web site using C#.net Pin
sumanth Reddy26-Sep-08 21:09
sumanth Reddy26-Sep-08 21:09 

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.