Click here to Skip to main content
15,894,646 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: String builder problem Pin
Guffa18-Nov-08 19:41
Guffa18-Nov-08 19:41 
QuestionDisplaying images and texts in flash from database Pin
VijayVishwakarma18-Nov-08 18:09
VijayVishwakarma18-Nov-08 18:09 
Questionsend message Pin
Rinki Mukheraji18-Nov-08 18:03
Rinki Mukheraji18-Nov-08 18:03 
AnswerRe: send message Pin
Parwej Ahamad18-Nov-08 18:31
professionalParwej Ahamad18-Nov-08 18:31 
AnswerRe: send message Pin
Brij18-Nov-08 18:38
mentorBrij18-Nov-08 18:38 
AnswerRe: send message Pin
Anil Pandey18-Nov-08 19:35
Anil Pandey18-Nov-08 19:35 
QuestionMenu Control is responding slowly in IE7 but working fine in FireFox Pin
sarangpani18-Nov-08 17:57
sarangpani18-Nov-08 17:57 
Questionselect button in gridview to populate textbox controls in new form (using linq to sql) Pin
Member 141625418-Nov-08 14:11
Member 141625418-Nov-08 14:11 
I need to stick with this format. No binding in the default.aspx source view page. I want to select a row and have that row populate the corresponding textboxes in default2.aspx. In other words if row id 213-46-8915 is selected the last name Green and first name Marjorie will show up in default2.aspx page textboxes. I got those values from the pubs database.

Default.aspx <asp:gridview id="GridView1" runat="server" xmlns:asp="#unknown">
<columns> <asp:templatefield showheader="False">
<itemtemplate>
<asp:linkbutton id="LinkButton1" runat="server" causesvalidation="False">
CommandName="Select" Text="Select">


code behind:

protected void Page_Load(object sender, EventArgs e)
{

DataClassesDataContext db = new DataClassesDataContext();
var products = from p in db.authors

select p;

GridView1.DataSource = products;
GridView1.DataBind();
} Default2.aspx

au_lname<asp:textbox id="TextBox1" runat="server" xmlns:asp="#unknown">


au_fname
<asp:textbox id="TextBox2" runat="server" xmlns:asp="#unknown">
Questionmy detailsview dissappears Pin
learningman18-Nov-08 10:30
learningman18-Nov-08 10:30 
QuestionScroll panel to bottom Pin
jzonthemtn18-Nov-08 8:04
jzonthemtn18-Nov-08 8:04 
AnswerRe: Scroll panel to bottom Pin
jzonthemtn18-Nov-08 8:27
jzonthemtn18-Nov-08 8:27 
AnswerRe: Scroll panel to bottom Pin
Christian Graus18-Nov-08 9:04
protectorChristian Graus18-Nov-08 9:04 
GeneralRe: Scroll panel to bottom Pin
jzonthemtn18-Nov-08 11:13
jzonthemtn18-Nov-08 11:13 
GeneralRe: Scroll panel to bottom Pin
Christian Graus18-Nov-08 11:46
protectorChristian Graus18-Nov-08 11:46 
GeneralRe: Scroll panel to bottom Pin
jzonthemtn18-Nov-08 11:54
jzonthemtn18-Nov-08 11:54 
QuestionCheckBoxList and PostBack Pin
Ahmed Galal18-Nov-08 7:26
Ahmed Galal18-Nov-08 7:26 
AnswerRe: CheckBoxList and PostBack Pin
ToddHileHoffer18-Nov-08 7:41
ToddHileHoffer18-Nov-08 7:41 
GeneralRe: CheckBoxList and PostBack Pin
Ahmed Galal18-Nov-08 9:25
Ahmed Galal18-Nov-08 9:25 
GeneralRe: CheckBoxList and PostBack Pin
ToddHileHoffer18-Nov-08 10:06
ToddHileHoffer18-Nov-08 10:06 
GeneralRe: CheckBoxList and PostBack Pin
Ahmed Galal19-Nov-08 5:54
Ahmed Galal19-Nov-08 5:54 
QuestionDataReader used type of function and closed when tried to call after RETURN(C#/VS 2005) Pin
Davidv12318-Nov-08 6:23
Davidv12318-Nov-08 6:23 
AnswerRe: DataReader used type of function and closed when tried to call after RETURN(C#/VS 2005) Pin
Ennis Ray Lynch, Jr.18-Nov-08 7:32
Ennis Ray Lynch, Jr.18-Nov-08 7:32 
QuestionMultiview and Radiobuttonlist problem in updatePanel Pin
sawssinette18-Nov-08 5:43
sawssinette18-Nov-08 5:43 
AnswerRe: Multiview and Radiobuttonlist problem in updatePanel Pin
ToddHileHoffer18-Nov-08 7:51
ToddHileHoffer18-Nov-08 7:51 
AnswerRe: Multiview and Radiobuttonlist problem in updatePanel Pin
sawssinette18-Nov-08 22:34
sawssinette18-Nov-08 22:34 

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.