Click here to Skip to main content
15,913,669 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Change the connection string in a WebSite Pin
Aman Bhullar12-Jun-09 0:12
Aman Bhullar12-Jun-09 0:12 
GeneralRe: Change the connection string in a WebSite Pin
SIlviaTerzi12-Jun-09 2:27
SIlviaTerzi12-Jun-09 2:27 
QuestionAsp.net Pin
ipsita bal11-Jun-09 19:48
ipsita bal11-Jun-09 19:48 
AnswerRe: Asp.net Pin
saanj12-Jun-09 0:40
saanj12-Jun-09 0:40 
AnswerRe: Asp.net Pin
Baran M12-Jun-09 1:39
Baran M12-Jun-09 1:39 
AnswerRe: Asp.net Pin
Vasudevan Deepak Kumar17-Jun-09 1:26
Vasudevan Deepak Kumar17-Jun-09 1:26 
Questionissue with Ajax and IE Pin
BeerFizz11-Jun-09 10:14
BeerFizz11-Jun-09 10:14 
AnswerRe: issue with Ajax and IE Pin
Aman Bhullar11-Jun-09 21:52
Aman Bhullar11-Jun-09 21:52 
Hi
The problem reported by you is a very genenal with IE.

If you are making a AJAX call to server with same argument, then IE will not call the server page. It will display the previously fetched result.

You can fix this bug with the little changes as:
Every time you make a server call, send some Unique number along with the arguments.

As you are just calling 'test.php' make the argument as

test.php?rnd=<some random number>

<some random number> : Replace it with Unique number. This will solve your problem.

Simple way to generate the unique number id

var dtDate = new Date();
var strDate = dtDate.getHours() + '' + dtDate.getMinutes() + '' + dtDate.getSeconds() + '' + dtDate.getMilliseconds();

Make a server call as
test.php?rnd=strDate


Regards
Aman Bhullar
www.arlivesupport.com[^]

GeneralRe: issue with Ajax and IE Pin
BeerFizz12-Jun-09 3:24
BeerFizz12-Jun-09 3:24 
GeneralRe: issue with Ajax and IE Pin
PrestonMB12-Jun-09 12:25
PrestonMB12-Jun-09 12:25 
QuestionHow to give Dynamic path in AjaxUploader control Asp.net Pin
kirti.darji10-Jun-09 19:07
kirti.darji10-Jun-09 19:07 
AnswerRe: How to give Dynamic path in AjaxUploader control Asp.net Pin
Christian Graus10-Jun-09 23:09
protectorChristian Graus10-Jun-09 23:09 
QuestionHi Folks, Positioning gone wrong in Web Developer. Pin
Baeltazor10-Jun-09 9:19
Baeltazor10-Jun-09 9:19 
AnswerRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
Christian Graus10-Jun-09 9:27
protectorChristian Graus10-Jun-09 9:27 
GeneralRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
Baeltazor10-Jun-09 9:38
Baeltazor10-Jun-09 9:38 
GeneralRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
Christian Graus10-Jun-09 10:42
protectorChristian Graus10-Jun-09 10:42 
GeneralRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
Baeltazor10-Jun-09 11:13
Baeltazor10-Jun-09 11:13 
QuestionRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
Baeltazor10-Jun-09 9:41
Baeltazor10-Jun-09 9:41 
AnswerRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
User 171649210-Jun-09 21:37
professionalUser 171649210-Jun-09 21:37 
GeneralRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
Baeltazor11-Jun-09 7:58
Baeltazor11-Jun-09 7:58 
AnswerRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
led mike11-Jun-09 4:49
led mike11-Jun-09 4:49 
GeneralRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
Baeltazor11-Jun-09 7:56
Baeltazor11-Jun-09 7:56 
AnswerRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
Todd Smith11-Jun-09 12:29
Todd Smith11-Jun-09 12:29 
GeneralRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
Baeltazor11-Jun-09 15:56
Baeltazor11-Jun-09 15:56 
GeneralRe: Hi Folks, Positioning gone wrong in Web Developer. Pin
Todd Smith12-Jun-09 5:49
Todd Smith12-Jun-09 5:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.