Skip to content

Instantly share code, notes, and snippets.

Created April 3, 2017 07:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/8523400cbb59c83f3b3ccf5f99c7d12e to your computer and use it in GitHub Desktop.
Save anonymous/8523400cbb59c83f3b3ccf5f99c7d12e to your computer and use it in GitHub Desktop.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!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></title>
<style>
.solayasla
{
float:left;
background-color:lightYellow;
}
</style>
</head>
<body>
<div style="background-color:lightyellow">
<form id="form1" runat="server">
<div style="width: 350px" class="solayasla">
Arkaplan rengi seçiniz:<br />
<asp:DropDownList ID="lstArkaPlan" runat="server">
</asp:DropDownList>
<br />
<br />
Yazı tipini seçiniz:<br />
<asp:DropDownList ID="lstYaziTipi" runat="server">
</asp:DropDownList>
<br />
<br />
Yazı boyutunu giriniz :
<br />
<asp:TextBox ID="tbYaziBoyutu" runat="server"></asp:TextBox>
<br />
<br />
Kenarlık Biçimi :
<br />
<asp:RadioButtonList ID="lstKenarlikBicimi" runat="server">
</asp:RadioButtonList>
<asp:CheckBox ID="cbVarsayilanResim" runat="server"
Text="Varsayılan resmi ekle" />
<br />
<br />
Mesajınızı giriniz :
<br />
<asp:TextBox ID="tbMesaj" runat="server" Height="84px" TextMode="MultiLine"
Width="240px"></asp:TextBox>
<br />
<asp:Button ID="Button1" runat="server" Text="Güncelle"
onclick="Button1_Click" />
<br />
</div>
<asp:Panel ID="pnlTebrikKarti" runat="server" Width="350px"
CssClass="solayasla">
<asp:Label ID="lblMesaj" runat="server" Text="Label"></asp:Label>
<asp:Image ID="imgVarsayilan" runat="server" Height="50%" Width="100%" />
</asp:Panel>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment