user2486535
user2486535

Reputation: 428

Asp.net web controls

<ucRpt:Report runat="server" ID="ucMS" />

Do any one have any Idea what the tag given above do,

can some one provide a link if have one

thanks in advance

Upvotes: 0

Views: 24

Answers (2)

sudhansu63
sudhansu63

Reputation: 6200

Its the use of a User Control in asp.net. You can find the registration of the user control in the top of the page.

<%@ Register Src="~/UserControl/Report.ascx" TagName="Report" TagPrefix="ucRpt" %>

Note: 1. the source in your code will be different.

and then used in page like

<ucRpt:Report runat="server" ID="ucMS" />

More Details:

Upvotes: 1

codeandcloud
codeandcloud

Reputation: 55278

Its a Custom ASP.NET Server Control
This MSDN article will explain it to you in detail: Developing Custom ASP.NET Server Controls

If you want to know what your particular custom user control, ie, ucRpt:Report does, try decompiling it with some open source tools like Telerik Decompiler and view its source.

Upvotes: 0

Related Questions