5
Answers

Jquery ajax call with Cross domain?

Hi,
 
       I have generated the javascript and html code. Now, i had paste the code to in my customers sites.but it is static now. If i made any changes in the code then my customers are need to replace the code.
 
    So i have created the Jquery ajax call in the generated html code, so every time page loads then ajax functions return the dynamic styles.
   
     But i got the error Cross Domain issue in ajax call error method.
 
      Can any one help me to solve this.... 
Answers (5)
0
Munesh Sharma

Munesh Sharma

NA 17.1k 2.4m 10y

First of all be sure that you are importing/using (depending on language) the System.IO namespace for this to work. But what you can do is something like this


string pathToCreate = "~/UserFolders/" + TextBox1.Text;

if(Directory.Exists(Server.MapPath(pathToCreate))

{

   //In here, start looping and modify the path to create to add a number

   //until you get the value needed

}

 

//Now you know it is ok, create it

Directory.CreateDirectory(Server.MapPath(pathToCreate));