ASP.NET single quotes are converted to '

后端 未结 6 1334
我在风中等你
我在风中等你 2021-01-02 02:24

Note: Most probably this will be a double question, but since I haven\'t found a clear answer, I\'m asking it anyway.

In ASP.NET I\'d like to add some JavaScript to

相关标签:
6条回答
  • 2021-01-02 02:53

    I was facing same issue. I searched a lot finally I solved it by changing content type of page to application/xhtml+xm.

    <%@ Page Language="C#" AutoEventWireup="true" EnableViewState="true" Debug="true" ContentType="application/xhtml+xm" %>
    

    Hope, This information will help you..

    0 讨论(0)
  • 2021-01-02 02:53

    Well if you want to stop entering ingle quote try this

    onkeypress="if (event.keyCode==39) event.returnValue = false;"
    

    Like

    <asp:TextBox ID="TextBox1" runat="server"   onkeypress="if (event.keyCode==39) event.returnValue = false;"
    ></asp:TextBox>
    
    0 讨论(0)
  • 2021-01-02 02:54

    I bumped into this recently where a control was being updated after the databind had taken place. The fix was to add the onchange javascript during the OnItemDatabound server event for the repeater involved:

    protected void rptTarifDetails_ItemDataBound(object sender, RepeaterItemEventArgs e)
    {
        if (e.Item.ItemType == ListItemType.Item)
        {    TextBox proposedPrice = e.Item.FindControl("txtProposedUnitSell") as TextBox;
            proposedPrice.Attributes.Add("onchange", "CalcCommissionSingleLine(this,'None','" + ((Repeater)sender).ClientID + "', false, " + rowCount.Value + ")");
    
    0 讨论(0)
  • 2021-01-02 02:57

    In case someone else finds this question, this is the way I was able to inject attributes from a custom control without having the values html encoded. This is an example of a button that calls out to an async function to confirm an button press action.

    The key is to use the writer.AddAttribute() which has the flag to disable the HTMLEncode step. This also seems to be dependent on which version of asp.net you are using. this works in .net 4.6.1

     public class ConfirmationLinkButton : LinkButton
    {
        protected override void AddAttributesToRender(HtmlTextWriter writer)
        {
            base.AddAttributesToRender(writer);
            string script = "confirmAsync('" + ConfirmationMessage.Replace("'", "\\'") + "', " + Callback() + ");" +
                            "return false;";
            writer.AddAttribute(HtmlTextWriterAttribute.Onclick, script, false);
        }
    
        private string Callback()
        {
            return "(data) => { if (data===true) {" + Page.ClientScript.GetPostBackEventReference(this, "") + "}}";
        }
    
        public string ConfirmationMessage { get; set; }
    }
    
    0 讨论(0)
  • 2021-01-02 02:58

    First of all the asp check box control doesn't take onclick as a valid attribute.

    So you can do two things:

    1- If you don't need the value server-side, you can just put a normal check box instead of the asp check box.

    2- If you need the value server side, add the runat="server" attribute and place and ID on your check box so you can reference it in your code.

    <input type="checkbox" id="chk1" onclick="alert('hello');" runat="server" />
    
    0 讨论(0)
  • 2021-01-02 03:07

    We had the same issue with single quotes in attribute values when we migrated a project from .NET 3.5 to .NET 4.0. It converts all single quotes in attribute values to &39;. So we went back to .NET 3.5.

    It's a .NET 4.0 thing. You can read more about this issue here.

    0 讨论(0)
提交回复
热议问题