Click here to Skip to main content
15,892,298 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How i have to prepare a color dialogbox or color palette in an asp.net Pin
yesu prakash21-Sep-09 17:58
yesu prakash21-Sep-09 17:58 
Questiondisplay data of a datatable as a text of link button in a gride view. Pin
rinku soni 2318-Sep-09 22:11
rinku soni 2318-Sep-09 22:11 
AnswerRe: display data of a datatable as a text of link button in a gride view. Pin
Christian Graus18-Sep-09 22:21
protectorChristian Graus18-Sep-09 22:21 
AnswerRe: display data of a datatable as a text of link button in a gride view. Pin
Arun Jacob18-Sep-09 22:27
Arun Jacob18-Sep-09 22:27 
AnswerRe: display data of a datatable as a text of link button in a gride view. Pin
Fahad Ahmed Khan19-Sep-09 23:46
Fahad Ahmed Khan19-Sep-09 23:46 
QuestionAuthenticating login information of a user quickly Pin
Vishnu Nath18-Sep-09 21:39
Vishnu Nath18-Sep-09 21:39 
AnswerRe: Authenticating login information of a user quickly Pin
Christian Graus18-Sep-09 22:22
protectorChristian Graus18-Sep-09 22:22 
Questioncreate xmlhttp request post method object not working in mozilla [modified] Pin
Member 387988118-Sep-09 19:22
Member 387988118-Sep-09 19:22 
Hi guys my create xmlhttp post method object not working in mozilla...,
plz give me some idea to resolve it...,

function CreateXmlHttp1()
{
try
{
senNif = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
senNif = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(oc)
{
senNif = null;

}
}
if(!senNif && typeof XMLHttpRequest != "undefined")
{
senNif = new XMLHttpRequest();
}
}


function Set(txtt,txte,txte)
{
Url="BlInsert.aspx";
var params = "blogsrno="+blo+"&txtt="+txte+"&txtname="+txte+"&txtemail="+txl+"×tamp="+new Date().getTime();
CreateXmlHttp1();
if(senNif)
{
senNif.open("POST", Url, true);
senNif.onreadystatechange = function(){getNew(tdD);};
senNif.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
senNif.setRequestHeader("Content-length", params.length);
senNif.setRequestHeader("Connection", "close");
senNif.send(params);
}
}
function getNew(id)
{
if(senNif.readyState == 4)
{
if(senNif.status == 200)
{ id.innerHTML=senNif.responseText;
}
}
}

Thanks & Regards,
Member 3879881,
please don't forget to vote on the post

modified on Saturday, September 19, 2009 3:01 AM

AnswerRe: create xmlhttp request post method object not working in mozilla Pin
Christian Graus18-Sep-09 20:11
protectorChristian Graus18-Sep-09 20:11 
GeneralRe: create xmlhttp request post method object not working in mozilla Pin
Member 387988118-Sep-09 21:01
Member 387988118-Sep-09 21:01 
AnswerRe: create xmlhttp request post method object not working in mozilla Pin
Arun Jacob18-Sep-09 20:55
Arun Jacob18-Sep-09 20:55 
QuestionProblem with CSS on ASP.Net Pin
AndyASPVB18-Sep-09 10:42
AndyASPVB18-Sep-09 10:42 
AnswerRe: Problem with CSS on ASP.Net Pin
Abhishek Sur18-Sep-09 11:31
professionalAbhishek Sur18-Sep-09 11:31 
QuestionBinding newly created row to a gridview. Pin
dayakar_dn18-Sep-09 10:42
dayakar_dn18-Sep-09 10:42 
AnswerRe: Binding newly created row to a gridview. Pin
Abhishek Sur18-Sep-09 11:33
professionalAbhishek Sur18-Sep-09 11:33 
QuestionHow to keep Session alive while going from unsecure to secure pages? Pin
chintanstrings18-Sep-09 10:39
chintanstrings18-Sep-09 10:39 
QuestionCascade Master Pages properties [modified] Pin
Dirso18-Sep-09 9:09
Dirso18-Sep-09 9:09 
AnswerRe: Cascade Master Pages properties Pin
Christian Graus18-Sep-09 12:25
protectorChristian Graus18-Sep-09 12:25 
QuestionRow Filter Pin
anushh18-Sep-09 8:48
anushh18-Sep-09 8:48 
AnswerRe: Row Filter Pin
Manas Bhardwaj18-Sep-09 9:41
professionalManas Bhardwaj18-Sep-09 9:41 
GeneralRe: Row Filter Pin
Abhishek Sur18-Sep-09 11:37
professionalAbhishek Sur18-Sep-09 11:37 
GeneralRe: Row Filter Pin
Manas Bhardwaj18-Sep-09 11:43
professionalManas Bhardwaj18-Sep-09 11:43 
GeneralRe: Row Filter Pin
Abhishek Sur18-Sep-09 11:48
professionalAbhishek Sur18-Sep-09 11:48 
GeneralRe: Row Filter Pin
Manas Bhardwaj18-Sep-09 11:54
professionalManas Bhardwaj18-Sep-09 11:54 
GeneralRe: Row Filter Pin
Abhishek Sur18-Sep-09 11:58
professionalAbhishek Sur18-Sep-09 11:58 

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.