Click here to Skip to main content
15,917,320 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: dgresult.SelectedItem.Cells(1).Text Pin
n_gchaitra18-Jul-07 20:00
n_gchaitra18-Jul-07 20:00 
GeneralRe: dgresult.SelectedItem.Cells(1).Text Pin
RepliCrux18-Jul-07 20:10
RepliCrux18-Jul-07 20:10 
Questionprob in calling webservice from client side in javascript Pin
itzmevishu18-Jul-07 19:01
itzmevishu18-Jul-07 19:01 
In the network .i have a webservice in a webserver and i want to call that webservice from a client machine to get data using javascript .


url="http://localhost/Chat/MsgBoxService.asmx/Get?" + str + "&type=agent&sMsg=";

if (window.XMLHttpRequest)
{
req = new XMLHttpRequest();
req.onreadystatechange = processReqChange();
req.open('GET', url, true);
req.send();
// branch for IE/Windows ActiveX version
}
else if (window.ActiveXObject)
{
isIE = true;
req = new ActiveXObject("Microsoft.XMLHTTP");
if (req) {

alert(url);
req.onreadystatechange = processReqChange;
req.open("GET", url, true);
req.send();
}
Questiondeployment in asp.net Pin
Sonia Gupta18-Jul-07 18:25
Sonia Gupta18-Jul-07 18:25 
AnswerRe: deployment in asp.net Pin
Sylvester george18-Jul-07 18:39
Sylvester george18-Jul-07 18:39 
GeneralRe: deployment in asp.net Pin
Sonia Gupta18-Jul-07 19:14
Sonia Gupta18-Jul-07 19:14 
GeneralRe: deployment in asp.net Pin
Sylvester george18-Jul-07 19:19
Sylvester george18-Jul-07 19:19 
AnswerRe: deployment in asp.net Pin
N a v a n e e t h18-Jul-07 19:12
N a v a n e e t h18-Jul-07 19:12 
Questioncreate image gallery. Pin
Milind Panchal18-Jul-07 18:22
Milind Panchal18-Jul-07 18:22 
QuestionValue of type Byte cannot be converted to 1-dimensional array of Byte Pin
ASPnoob18-Jul-07 16:22
ASPnoob18-Jul-07 16:22 
AnswerRe: Value of type Byte cannot be converted to 1-dimensional array of Byte Pin
Sathesh Sakthivel18-Jul-07 16:31
Sathesh Sakthivel18-Jul-07 16:31 
GeneralRe: Value of type Byte cannot be converted to 1-dimensional array of Byte [modified] Pin
ASPnoob18-Jul-07 16:51
ASPnoob18-Jul-07 16:51 
QuestionIntelligence in VS 2005 Pin
Amit Kumar G18-Jul-07 15:06
Amit Kumar G18-Jul-07 15:06 
AnswerRe: Intelligence in VS 2005 Pin
Sylvester george18-Jul-07 18:15
Sylvester george18-Jul-07 18:15 
AnswerRe: Intelligence in VS 2005 Pin
Mubashir Javaid18-Jul-07 18:36
Mubashir Javaid18-Jul-07 18:36 
QuestionSingle Sign On for two sites of different domains. Pin
sandeep kumar pundhir18-Jul-07 11:46
sandeep kumar pundhir18-Jul-07 11:46 
AnswerRe: Single Sign On for two sites of different domains. Pin
RepliCrux18-Jul-07 12:45
RepliCrux18-Jul-07 12:45 
GeneralRe: Single Sign On for two sites of different domains. Pin
N a v a n e e t h18-Jul-07 19:31
N a v a n e e t h18-Jul-07 19:31 
GeneralRe: Single Sign On for two sites of different domains. Pin
RepliCrux18-Jul-07 19:43
RepliCrux18-Jul-07 19:43 
GeneralRe: Single Sign On for two sites of different domains. Pin
N a v a n e e t h18-Jul-07 20:46
N a v a n e e t h18-Jul-07 20:46 
AnswerRe: Single Sign On for two sites of different domains. Pin
ballameharmurali18-Jul-07 18:23
ballameharmurali18-Jul-07 18:23 
QuestionControls Collection Pin
Hyland Computer Systems18-Jul-07 9:46
Hyland Computer Systems18-Jul-07 9:46 
AnswerRe: Controls Collection Pin
leckey18-Jul-07 9:49
leckey18-Jul-07 9:49 
AnswerRe: Controls Collection Pin
-Dr_X-18-Jul-07 9:53
-Dr_X-18-Jul-07 9:53 
GeneralRe: Controls Collection Pin
Hyland Computer Systems18-Jul-07 14:55
Hyland Computer Systems18-Jul-07 14:55 

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.