Click here to Skip to main content
15,867,686 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDisabling checkbox/row in repeater? Pin
kbalias9-Jul-07 19:55
kbalias9-Jul-07 19:55 
Questionmaster page Pin
ravikiranreddydharmannagari9-Jul-07 19:35
ravikiranreddydharmannagari9-Jul-07 19:35 
AnswerRe: master page Pin
Sven Cipido9-Jul-07 20:13
Sven Cipido9-Jul-07 20:13 
AnswerRe: master page Pin
Michael Sync9-Jul-07 20:15
Michael Sync9-Jul-07 20:15 
GeneralRe: master page Pin
ravikiranreddydharmannagari9-Jul-07 20:22
ravikiranreddydharmannagari9-Jul-07 20:22 
GeneralRe: master page Pin
Michael Sync9-Jul-07 20:27
Michael Sync9-Jul-07 20:27 
GeneralRe: master page Pin
ravikiranreddydharmannagari9-Jul-07 20:38
ravikiranreddydharmannagari9-Jul-07 20:38 
GeneralRe: master page Pin
Michael Sync9-Jul-07 20:46
Michael Sync9-Jul-07 20:46 
Master Page.
==========

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" /></div>
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder>

</form>
</body>
</html>

----------------------
Child Page
==========

<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
</asp:Content>


Run the application. Put "ravi" in Textbox1. Click Button1. You will still see the "ravi" that you put..


Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)


GeneralRe: master page [modified] Pin
ravikiranreddydharmannagari9-Jul-07 21:09
ravikiranreddydharmannagari9-Jul-07 21:09 
GeneralRe: master page Pin
sidbaruah9-Jul-07 22:02
sidbaruah9-Jul-07 22:02 
GeneralRe: master page Pin
ravikiranreddydharmannagari9-Jul-07 23:03
ravikiranreddydharmannagari9-Jul-07 23:03 
QuestionBackGround Sound In the web site Pin
EEmaan9-Jul-07 19:18
EEmaan9-Jul-07 19:18 
AnswerRe: BackGround Sound In the web site Pin
Michael Sync9-Jul-07 20:08
Michael Sync9-Jul-07 20:08 
AnswerRe: BackGround Sound In the web site Pin
Ken Fan9-Jul-07 21:53
Ken Fan9-Jul-07 21:53 
AnswerRe: BackGround Sound In the web site Pin
Vasudevan Deepak Kumar9-Jul-07 22:35
Vasudevan Deepak Kumar9-Jul-07 22:35 
Questionhow to session storing in database with exception handling Pin
avananda reddys 1239-Jul-07 19:12
avananda reddys 1239-Jul-07 19:12 
AnswerRe: how to session storing in database with exception handling Pin
N a v a n e e t h9-Jul-07 19:21
N a v a n e e t h9-Jul-07 19:21 
QuestionReading Blob [modified] Pin
ASPnoob9-Jul-07 18:49
ASPnoob9-Jul-07 18:49 
AnswerRe: Reading Blob Pin
Sathesh Sakthivel9-Jul-07 19:00
Sathesh Sakthivel9-Jul-07 19:00 
GeneralRe: Reading Blob Pin
ASPnoob9-Jul-07 19:03
ASPnoob9-Jul-07 19:03 
AnswerRe: Reading Blob Pin
Rhys Gravell9-Jul-07 19:46
professionalRhys Gravell9-Jul-07 19:46 
GeneralRe: Reading Blob Pin
ASPnoob9-Jul-07 20:00
ASPnoob9-Jul-07 20:00 
GeneralRe: Reading Blob Pin
Rhys Gravell10-Jul-07 6:46
professionalRhys Gravell10-Jul-07 6:46 
GeneralRe: Reading Blob [modified] Pin
ASPnoob10-Jul-07 8:25
ASPnoob10-Jul-07 8:25 
GeneralRe: Reading Blob Pin
Rhys Gravell10-Jul-07 10:12
professionalRhys Gravell10-Jul-07 10:12 

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.