How to data-bind Label in asp.net. asp.net example
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="defalt.aspx.cs" Inherits="Defalt" %><!DOCTYPE html> <asp:Label runat="server" ID="lblprice" Text='<%# Eval("price") %>'><html lang="en"><head> <title> abcd</title></head><body> <form runat="server" id=form1>
</from></body></html>
I want to show the data in the labels that I last entered.
How can I do that?
0 Comments