Is it possible to put the text of the title="" attribute by c #? "
The title I want to manipulate is:
<asp:HyperLink runat="server" ID="linkTitle" CssClass="link_title search-result-link-title tooltip-init" Target="_top" data-toggle="too...
I want to implement the wind GotFocus in a TextBox , so that when it gets focus, it sets the Text property to string.empty .
However, I have 6 TextBox that will execute this event. How do I identify which TextB...
I need to format a string so that it contains only 30 characters.
If you have less than 30, you should fill in the blanks, and if you have more, you should leave it with only 30.
I know you should have a way to do + - like this:
string...
I'm having trouble forwarding my model to the control:
Class:
public class Pessoa {
public virtual long Id {get; set;}
public virtual string Nome {get; set;}
public virtual ETipo Tipo {get; set;}
public...
dispose() frees the object from memory, right? I do not know when it is necessary to use it. For example, I have a page, on this page there is listBox com
visible = "false" , in an event this listBox becomes true...
I need to get a user's location, pass it to C #, get their street data and show it on a label.
I have the following code:
Labels
<asp:Label ID="lblMsg" runat="server" Visible="true"></asp:Label>
<asp:Label ID="lblLatitud...
I'm doing a project for the Faculty, and I'm having a hard time understanding how to create a button and call an ActionResult on the Controller, and wanted to know if the action needs to be on the corresponding controller of the respective Model...