Click here to Skip to main content
16,007,814 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how many? Pin
eyeseetee4-Jun-08 1:18
eyeseetee4-Jun-08 1:18 
JokeRe: how many? Pin
Guffa4-Jun-08 10:12
Guffa4-Jun-08 10:12 
AnswerRe: how many? Pin
manikanta.mnl4-Jun-08 1:45
manikanta.mnl4-Jun-08 1:45 
GeneralRe: how many? Pin
EvilInside4-Jun-08 19:15
EvilInside4-Jun-08 19:15 
QuestionError in web control Pin
Krazy Programmer4-Jun-08 1:09
Krazy Programmer4-Jun-08 1:09 
AnswerRe: Error in web control Pin
Christian Graus4-Jun-08 4:06
protectorChristian Graus4-Jun-08 4:06 
Questionhow to get response in xml file Pin
harunbagwan4-Jun-08 0:44
harunbagwan4-Jun-08 0:44 
AnswerRe: how to get response in xml file Pin
Artem Kustikov4-Jun-08 3:45
Artem Kustikov4-Jun-08 3:45 
Problem can be resolved faster if you provide your XMLHTTP calling code. If you use MS XMLHTTP (in IE) I can suppose to check whether server XML response starts from "" directly, without leading whitespaces or BOM.

To resolve this issue in IE you can use following code (xmlhttp - created XMLHTTP object):
var TRIM_SYMBOLS = " \\t\\r\\n";
function trim (str_, trim_) 
{
	trim_ =  (trim_ ? TRIM_SYMBOLS + trim_: TRIM_SYMBOLS );
	eval("var str = (String(str_)).replace(/(^[" + trim_ + "]*)|([" + trim_ + "]*$)/g,'')");
	return str;
}
...
function getXmlResponse(xmlhttp) 
{
	var doc = xmlhttp.responseXML;
	if (doc.documentElement == null)	
	{
		doc = new ActiveXObject("Microsoft.XMLDOM");
		doc.loadXML ( trim (this.xmlhttp.responseText) );
	} 
		
	if (doc.parseError && doc.parseError.errorCode != 0) {
		var msg = "Error parsing XML: " + doc.parseError.reason  + 
			doc.parseError.srcText + "\r\nURL: ";
		throw new Error (doc.parseError.errorCode, msg);		
		return null;
	}
	return doc;
}

Questionneed help regarding VoIP... Pin
manikanta.mnl4-Jun-08 0:40
manikanta.mnl4-Jun-08 0:40 
AnswerRe: need help regarding VoIP... Pin
eyeseetee4-Jun-08 0:47
eyeseetee4-Jun-08 0:47 
GeneralRe: need help regarding VoIP... Pin
manikanta.mnl4-Jun-08 1:25
manikanta.mnl4-Jun-08 1:25 
GeneralRe: need help regarding VoIP... Pin
eyeseetee4-Jun-08 2:17
eyeseetee4-Jun-08 2:17 
GeneralRe: need help regarding VoIP... Pin
manikanta.mnl4-Jun-08 3:25
manikanta.mnl4-Jun-08 3:25 
JokeRe: need help regarding VoIP... Pin
EvilInside4-Jun-08 19:27
EvilInside4-Jun-08 19:27 
GeneralRe: need help regarding VoIP... Pin
eyeseetee4-Jun-08 21:34
eyeseetee4-Jun-08 21:34 
Questionhow to get the data in a grid view cell one space from the left Pin
lakshmichawala4-Jun-08 0:22
lakshmichawala4-Jun-08 0:22 
AnswerRe: how to get the data in a grid view cell one space from the left Pin
eyeseetee4-Jun-08 0:46
eyeseetee4-Jun-08 0:46 
GeneralRe: how to get the data in a grid view cell one space from the left Pin
lakshmichawala4-Jun-08 1:13
lakshmichawala4-Jun-08 1:13 
QuestionFilename getting currepted when downloading a file with filename having french characters Pin
jophinmichael4-Jun-08 0:15
jophinmichael4-Jun-08 0:15 
AnswerRe: Filename getting currepted when downloading a file with filename having french characters Pin
Artem Kustikov4-Jun-08 4:02
Artem Kustikov4-Jun-08 4:02 
GeneralRe: Filename getting currepted when downloading a file with filename having french characters Pin
jophinmichael4-Jun-08 4:19
jophinmichael4-Jun-08 4:19 
GeneralRe: Filename getting currepted when downloading a file with filename having french characters Pin
Artem Kustikov4-Jun-08 4:26
Artem Kustikov4-Jun-08 4:26 
GeneralRe: Filename getting currepted when downloading a file with filename having french characters Pin
jophinmichael4-Jun-08 4:59
jophinmichael4-Jun-08 4:59 
QuestionSession Vs Profile Pin
Tridip Bhattacharjee3-Jun-08 23:46
professionalTridip Bhattacharjee3-Jun-08 23:46 
AnswerRe: Session Vs Profile Pin
eyeseetee3-Jun-08 23:50
eyeseetee3-Jun-08 23:50 

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.