Click here to Skip to main content
15,891,633 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Use of Login in the Toolbox Pin
Sam Xavier9-Dec-07 23:05
Sam Xavier9-Dec-07 23:05 
Questionblock internet Pin
biren6127-Nov-07 13:39
biren6127-Nov-07 13:39 
AnswerRe: block internet Pin
Colin Angus Mackay27-Nov-07 14:11
Colin Angus Mackay27-Nov-07 14:11 
QuestionBind with GridView Pin
johnmuthu27-Nov-07 8:14
johnmuthu27-Nov-07 8:14 
AnswerRe: Bind with GridView Pin
pmarfleet27-Nov-07 8:43
pmarfleet27-Nov-07 8:43 
QuestionRe: Bind with GridView Pin
Venkatesh Mookkan27-Nov-07 16:24
Venkatesh Mookkan27-Nov-07 16:24 
QuestionHow to get text From Page1 to Page2? Pin
Zeeshan Ahmed Memon27-Nov-07 4:54
Zeeshan Ahmed Memon27-Nov-07 4:54 
AnswerRe: How to get text From Page1 to Page2? Pin
SABhatti27-Nov-07 5:09
SABhatti27-Nov-07 5:09 
you can pass data between pages in multiple ways:

1. store the data in session and then redirect (response.redirect or server.transfer) to the next page and access the data from session.
2. you can pass data in query string
3. you can set postbackurl for the button and then access the values from the previous page using Request.Form like:
<br />
in page 1 do this:<br />
<asp:Button ID="button1" Runat=server Text="submit" PostBackUrl="~/Page2.aspx" /><br />
<br />
and then on page 2 use<br />
<br />
string field1data = Request.Form("fieldfrompage1");<br />
<code><br />
<br />
4.  you can access the previous page controls using PreviousPage.Controls.. <br />
<br />
<div class="ForumSig">-----</div>

AnswerRe: How to get text From Page1 to Page2? Pin
pmarfleet27-Nov-07 5:10
pmarfleet27-Nov-07 5:10 
Questionrole vs. membership providers Pin
garymcintyre27-Nov-07 4:39
garymcintyre27-Nov-07 4:39 
AnswerRe: role vs. membership providers Pin
szukuro27-Nov-07 5:22
szukuro27-Nov-07 5:22 
QuestionUrGeNt: How to clone a table? Pin
Big Ralph27-Nov-07 4:30
Big Ralph27-Nov-07 4:30 
AnswerRe: UrGeNt: How to clone a table? Pin
leckey27-Nov-07 4:40
leckey27-Nov-07 4:40 
GeneralRe: UrGeNt: How to clone a table? Pin
Big Ralph27-Nov-07 21:16
Big Ralph27-Nov-07 21:16 
GeneralRe: UrGeNt: How to clone a table? Pin
leckey28-Nov-07 2:46
leckey28-Nov-07 2:46 
GeneralRe: UrGeNt: How to clone a table? Pin
Big Ralph28-Nov-07 3:08
Big Ralph28-Nov-07 3:08 
AnswerRe: UrGeNt: How to clone a table? Pin
Pete O'Hanlon27-Nov-07 10:40
mvePete O'Hanlon27-Nov-07 10:40 
GeneralRe: UrGeNt: How to clone a table? Pin
Big Ralph27-Nov-07 21:27
Big Ralph27-Nov-07 21:27 
GeneralRe: UrGeNt: How to clone a table? Pin
Pete O'Hanlon27-Nov-07 21:47
mvePete O'Hanlon27-Nov-07 21:47 
GeneralRe: UrGeNt: How to clone a table? Pin
Big Ralph27-Nov-07 23:19
Big Ralph27-Nov-07 23:19 
QuestionToo Many argument to public subnew() Pin
JMUREKEZI27-Nov-07 4:25
JMUREKEZI27-Nov-07 4:25 
AnswerRe: Too Many argument to public subnew() Pin
pmarfleet27-Nov-07 4:59
pmarfleet27-Nov-07 4:59 
GeneralRe: Too Many argument to public subnew() Pin
JMUREKEZI27-Nov-07 5:23
JMUREKEZI27-Nov-07 5:23 
GeneralRe: Too Many argument to public subnew() Pin
pmarfleet27-Nov-07 5:32
pmarfleet27-Nov-07 5:32 
QuestionForce Update in form view programmatically Pin
Big Ralph27-Nov-07 3:22
Big Ralph27-Nov-07 3:22 

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.