0

C# Modal popup appears locally correctly But when I published my website--> modal popup doesn't appear in my PC But it works fine and appears in some other PCs..

this is the website: http://training.3adda.com/training/pg_Register_OL.aspx After selecting category-->show all courses related then select course --> show modal popup with course description

I don't know where the problem is...in website or server i published or my pc!!

please help...thanks in advance

Miss.Alpha
  • 111
  • 1
  • 10

1 Answers1

0

Your website seems to check for the Personal Information requirements before spitting out the Modal. Also I found some of the following bugs:

  • Modal shows only if the mandatory fields are entered.
  • Mandatory fields accept any value as answers. For eg., it doesn't check the formatting of email nor a proper telephone number.
  • The section field in Modal appears a bit cluttered. It can be listed out as bullets using:

    string str = "\u2022 First Line." + System.Environment.NewLine + "\u2022 Second Line.";

where \u2022 is the ASCII character for the bullet point symbol.

Michael D
  • 20,838
  • 4
  • 12
  • 37
  • Ok thanks for your help...yes Modal should be appeared only if personal info entered... But How this comments you refer affect in modal appear in some devices and does not appear in others ? – Mohamed Nasr Jun 26 '16 at 08:49
  • The architecture (32 or 64-bit) strikes me a source of the error. Does this occur with all strings? Do you notice anything with trivial strings (eg. sending a single null byte)? – Michael D Jun 26 '16 at 09:01
  • The architecture (32 bit)..yes i accept empty string values in some fields not all – Mohamed Nasr Jun 26 '16 at 09:47
  • I meant to say the architectural differences between the computers might be a source of error. – Michael D Jun 26 '16 at 10:04
  • You might want to take a look at [here](http://stackoverflow.com/a/3540795/6513921) for further emphasis over my comment. – Michael D Jun 26 '16 at 10:06
  • Ooh! sorry for misunderstanding...- My PC is 32 bit and modal work locally and does not in published. - I tried to browse the website from another PC 32 bit and find that i works fine and modal popup appears correctly in published....thanks you help – Mohamed Nasr Jun 26 '16 at 13:00
  • @Micheal D any help – Mohamed Nasr Jun 28 '16 at 08:24
  • I am sorry, I am out of ideas. – Michael D Jun 28 '16 at 14:33