Most voted "aspx" questions
18 questions
Sort by count of
-
6
votes1
answer73
viewsMeaning of expression <%# "example" %>
I’m used to seeing expressions like <%= "Olá" %> but I came across a code: <asp:Image id="imagemStatusDocumento" runat="server" ImageUrl='<%# ObtemImagem(Eval("NomeTipo")) %>' />…
-
5
votes2
answers260
viewsWhat is the difference between Cssclass="example" and class="example"
I came across the following piece of code: <asp:Label ID="lblStatus" CssClass="labelFiltro" runat="server" Text="Status:"></asp:Label> Until then I didn’t know CssClass, would like to…
-
1
votes1
answer72
viewsHow to get panels from a daughter page on Asp.net
I’m trying to get the panels from a daughter page on Asp.net, but when I use the page. Controls, it only retrieves the elements from the master page. I have tried this, Page.Page, but always the…
-
1
votes1
answer269
viewsHow to insert/save string RTF - Aspxrichedit
In my application, I search the database for a string that contains RTF and need to load it into Aspxrichedit. And when necessary, save Aspxrichedit content to an RTF string to store in the…
-
1
votes0
answers109
viewsFramework for Graphics
Good morning, I’m with a graphic that was developed using the Devexpress(https://demos.devexpress.com/XtraChartsDemos/BarViewTypes/BarSeries.aspx). In the chart I’m using it has five columns and…
-
1
votes1
answer176
viewsI can’t find the Web form ASP.NET in Visual Studio 2019
Hello, when trying to add a web page with extension aspx in Visual Studio 2019, I can’t find it to add, as image: Something like this image should appear: I appreciate anyone who can help me.…
-
1
votes1
answer171
viewsWhat is Asp:Content?
What the hell is he? What does he do? 'Cause I can’t get one <body> inside him? I can change something in it via CSS? Type of project I did, vs default does not let the page run without this…
-
1
votes1
answer80
views -
0
votes2
answers44
views -
0
votes1
answer36
viewsHiddenfield in aspx to cshtml
I have a doubt about hiddenfield in aspx we use the following command: <asp:HiddenField ID="HiddenField1" runat="server" /> And for cshtml it is possible?…
-
0
votes1
answer31
viewsIs there an alternative to the Outputcache directive previously used on . aspx pages, to be used on . cshtml pages in . net core?
Is there an alternative to the Outputcache directive previously used on . aspx pages, to be used on . cshtml pages in Asp . net core ?
-
0
votes0
answers131
viewsIs there a way to use CSHTML (Razor) in ASPX Webform projects?
I was taking a look in that question in Stackoverflow English, because I really find it very confusing to use ASPX files and find the syntax of Razor more user friendly. When trying to add a file…
-
0
votes0
answers45
viewsDatabase image does not load
Good morning, I’m trying to display an image previously recorded in a database in the form gridview, but this is returning an error and I can’t figure out what is wrong following the aspx snippet…
-
0
votes1
answer195
viewsHow to take the content of a textarea and show in a modal
I wonder if I can take the content of a textarea (which in this case is a Texbox) and show in a modal, in my case: Follow the code I made: <asp:Label runat="server" CssClass="text-bold"…
-
0
votes0
answers17
viewsASPX dropdownlist does not load image
I’m doing a dropdownlist to present only image, but this does not work, as this article macoratti.net/14/11/aspn_ddli1.htm . I even downloaded it and ran it on my machine and it didn’t work, could…
-
-1
votes1
answer186
viewsI want to import an entire page with jquery, should I divide the page into different jquerys so that I can write code through the jquerys?
With this jquery I am importing the whole page, but I can’t put html Divs in the middle of the query, only at the end. <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">…
-
-1
votes1
answer106
viewsHow to duplicate or clone a DIV in Java Script and read all elements in ASP.NET C#
Hello, I have a guest form that I need to automatically increase the fields according to the completion. The code is: <div class="form-row" id="Guests"> <p><strong>Guests…
-
-2
votes1
answer37
viewsUpdate Textbox data on different . ascx components, but on the same page . aspx
Once again in need of your help! Next, I have a page CadastroProposta.aspx, 2 custom components are loaded inside this page, DadosPagamento.ascx and DadosCobranca.ascx. In the component…