Click here to Skip to main content
15,886,026 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionFormatting of textbox within listview in webform [modified] (Problem solved) Pin
Patrick Garrity28-Aug-09 3:47
Patrick Garrity28-Aug-09 3:47 
Questionedit property of data gridview control Pin
myinstincts28-Aug-09 2:33
myinstincts28-Aug-09 2:33 
AnswerRe: edit property of data gridview control Pin
janani1328-Aug-09 2:46
janani1328-Aug-09 2:46 
GeneralRe: edit property of data gridview control Pin
myinstincts28-Aug-09 2:52
myinstincts28-Aug-09 2:52 
GeneralRe: edit property of data gridview control Pin
sashidhar30-Aug-09 21:07
sashidhar30-Aug-09 21:07 
QuestionLinking ASP.NET web controls with CSS styles [modified] Pin
Chesnokov Yuriy28-Aug-09 2:21
professionalChesnokov Yuriy28-Aug-09 2:21 
AnswerRe: Linking ASP.NET web controls with CSS styles Pin
janani1328-Aug-09 2:53
janani1328-Aug-09 2:53 
AnswerRe: Linking ASP.NET web controls with CSS styles Pin
Chesnokov Yuriy28-Aug-09 3:12
professionalChesnokov Yuriy28-Aug-09 3:12 
In VS2008 there is addition of design view of your web page as it looks from the source, along with split, where you can watch both source code and the page look.

"Project.Master file"

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="GenderAge.master.cs" Inherits="GenderAge.GenderAge" %>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<link href="themes/default/styles.css" rel="stylesheet" type="text/css" />    
</head>
<body>
    <form id="form1" runat="server">        
    <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
    </asp:ContentPlaceHolder>
    </form>
</body>
</html>


"Page.aspx file"

<%@ Page Title="" Language="C#" MasterPageFile="~/Project.Master" AutoEventWireup="true" CodeBehind="Page.aspx.cs" Inherits="Page.Main" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <asp:Button ID="buttonFileUpload" runat="server"
                Text="Upload" CssClass="buttons" />
</asp:Content>


Чесноков

GeneralRe: Linking ASP.NET web controls with CSS styles Pin
DoctorMick28-Aug-09 5:24
DoctorMick28-Aug-09 5:24 
QuestionRe: Linking ASP.NET web controls with CSS styles Pin
Chesnokov Yuriy28-Aug-09 7:50
professionalChesnokov Yuriy28-Aug-09 7:50 
QuestionAdd Hashtable into the arraylist in javascript Pin
zeeShan anSari28-Aug-09 2:09
zeeShan anSari28-Aug-09 2:09 
Questionstore image in databse Pin
rinku soni 2328-Aug-09 1:50
rinku soni 2328-Aug-09 1:50 
AnswerRe: store image in databse Pin
Coding C#28-Aug-09 2:02
Coding C#28-Aug-09 2:02 
AnswerRe: store image in databse Pin
Arun Jacob28-Aug-09 2:22
Arun Jacob28-Aug-09 2:22 
Questionwhen set property enable = false for checkbox control in design time then after how to enable = true in javascript Pin
anish27patel28-Aug-09 1:32
anish27patel28-Aug-09 1:32 
AnswerRe: when set property enable = false for checkbox control in design time then after how to enable = true in javascript Pin
Arun Jacob28-Aug-09 1:54
Arun Jacob28-Aug-09 1:54 
GeneralRe: when set property enable = false for checkbox control in design time then after how to enable = true in javascript Pin
anish27patel30-Aug-09 18:19
anish27patel30-Aug-09 18:19 
AnswerRe: when set property enable = false for checkbox control in design time then after how to enable = true in javascript Pin
Coding C#28-Aug-09 2:06
Coding C#28-Aug-09 2:06 
QuestionHow can we add dynamic control to Data table Pin
Jain Vijay28-Aug-09 1:31
Jain Vijay28-Aug-09 1:31 
AnswerRe: How can we add dynamic control to Data table Pin
Coding C#28-Aug-09 2:08
Coding C#28-Aug-09 2:08 
GeneralRe: How can we add dynamic control to Data table Pin
Jain Vijay28-Aug-09 2:17
Jain Vijay28-Aug-09 2:17 
GeneralRe: How can we add dynamic control to Data table Pin
Coding C#28-Aug-09 2:21
Coding C#28-Aug-09 2:21 
QuestionASP.NET GridView not displaying label value while paging Pin
Inderjeet Kaur27-Aug-09 23:30
Inderjeet Kaur27-Aug-09 23:30 
AnswerRe: ASP.NET GridView not displaying label value while paging Pin
Inderjeet Kaur28-Aug-09 0:20
Inderjeet Kaur28-Aug-09 0:20 
QuestionHelp with Crystal Reports [modified] Pin
callousfantom27-Aug-09 23:26
callousfantom27-Aug-09 23:26 

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.