Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

162
Views
Alert dialog never shows escape characters in asp.net ajax

I'm working on ASP.NET AJAX Web Application.

As part of the requirement, I need to show message to the end user with the uploaded file location. Everything is fine, but the alert message never shows "/" symbols in the path.

For the path: \\shrestasoft\intranet\CorrectionReports\ReportsWithAccount\CorrectionReportWithAccount-Dec-22-2021-12-31-36-PM.xlsx

Below is how my alert dialog is displaying:

\shrestasoftintranetCorrectionReportsReportsWithAccountCorrectionReportWithAccount-Dec-22-2021-12-31-36-PM.xlsx

enter image description here

I've written the below code:

    public static void ShowAlertWithFileLocation(object sender, string message)
    {
        message = "alert('" + message + "');";
        ScriptManager.RegisterClientScriptBlock((sender as Control), typeof(ScriptManager), "alert", message, true);
    }

I've tried to use HtmlUtility.HtmlEncode() method, but that did not work for me. Can someone suggest how can I get the appropriate filename with path?

about 4 years ago · Santiago Trujillo
2 answers
Answer question

0

The \ is considered a escape car. But in place of ' use ` and String.raw

eg this:

 message = "alert(String.raw`" + message + "`);";

note carefull - there is no () for String.raw - and you use ` and not '

So, you use the ` that left to 1 key on most keyboards.

eg:

 var s = String.raw`power\weight`
 alert(s)
about 4 years ago · Santiago Trujillo Report

0

The answer is very simple, but took more time for me to arrive to this conclusion. We just need to use new JavaScriptSerializer().Serialize(message); method.

Below is my modified code:

    public static void ShowAlertWithFileLocation(object sender, string message)
    {
        message = new JavaScriptSerializer().Serialize(message);
        message = "alert('" + message + "');";
        ScriptManager.RegisterClientScriptBlock((sender as Control), typeof(ScriptManager), "alert", message, true);
    }
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!