|
<%@ Page Language="C#"
AutoEventWireup="true"
CodeFile="DFhomePage.aspx.cs"
Inherits="DFhomePage"
%>
<!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>
</head>
<body style="height: 203px">
<form id="form1" runat="server">
<div style="height: 198px">
<asp:TextBox ID="txtString" runat="server" BorderColor="#FF0066"
BorderStyle="Solid" Font-Bold="True" Font-Names="Tahoma" Font-Size="Medium"
Height="27px" Width="146px"> </asp:TextBox>
<asp:Button ID="btnConvert" runat="server" BackColor="#FF0066"
BorderColor="#0099FF"
BorderStyle="Solid"
Font-Bold="True"
Font-Names="thoma"
Font-Size="Medium" ForeColor="White" Height="32px" onclick="btnConvert_Click"
Text="Convert" Width="75px" />
<asp:Label ID="lblResultmess" runat="server" Font-Bold="True"
Font-Names="Aharoni" Font-Size="Medium" ForeColor="#003399">Result</asp:Label>
<asp:Label ID="lblResult" runat="server" Font-Bold="True" Font-Names="thoma"
Font-Size="Medium" ForeColor="#009933"></asp:Label>
<br />
<br />
</div>
</form>
</body>
</html>
|
using
System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using
System.Web.UI.WebControls;
public partial class DFhomePage : System.Web.UI.Page
{
protected
void Page_Load(object
sender, EventArgs e)
{
}
protected
void btnConvert_Click(object sender, EventArgs e)
{
lblResult.Text=txtString.Text.ToUpper();
}
}
|