Click here to Skip to main content
15,902,842 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to allow a user and deny all others Pin
Le centriste28-Jan-09 4:11
Le centriste28-Jan-09 4:11 
AnswerRe: How to allow a user and deny all others Pin
SeMartens28-Jan-09 4:39
SeMartens28-Jan-09 4:39 
GeneralRe: How to allow a user and deny all others Pin
Le centriste28-Jan-09 4:47
Le centriste28-Jan-09 4:47 
AnswerSOLVED Pin
Le centriste28-Jan-09 4:52
Le centriste28-Jan-09 4:52 
QuestionASP.Net Development Server Issues [modified] Pin
Jacquers28-Jan-09 2:26
Jacquers28-Jan-09 2:26 
QuestionBuild Error Pin
ais0728-Jan-09 2:13
ais0728-Jan-09 2:13 
AnswerRe: Build Error Pin
mr_muskurahat28-Jan-09 3:52
mr_muskurahat28-Jan-09 3:52 
Questioncalling remote webservices from sharepoint using javascript Pin
gottimukkala28-Jan-09 0:47
gottimukkala28-Jan-09 0:47 
Hi

I am trying to invite my remote webservices using Javascript from sharepoint with the follwoing code: but everytime I get Access is denied error.


httpReq.open('post',url, true);
httpreq.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
httpreq.setRequestHeader("SOAPAction","http://schemas.microsoft.com/sharepoint/dsp/queryRequest");
postparams = "method=GetStructureWithPublications&structureId="+StructureId+"&language="+Language;
httpreq.onreadystatechange = function()
{
var done = 4, ok = 200;
if (request.readyState == done && request.status == ok)
{
if (request.responseText)
{
vtaTree.GetDataCallBack(request.responseText);
}
else
{
vtaTree.GetDataCallBack(request.responseXML);
}
}

};

httpreq.setRequestHeader("Content-Length",postparams.length);
httpreq.send(postparams);


Any one please help me.
Questionemail not getting to destination address Pin
tomertro28-Jan-09 0:27
tomertro28-Jan-09 0:27 
AnswerRe: email not getting to destination address Pin
N a v a n e e t h28-Jan-09 1:16
N a v a n e e t h28-Jan-09 1:16 
QuestionMaintaining old .net 1.1 bound datagrid control Pin
jonatec27-Jan-09 22:31
jonatec27-Jan-09 22:31 
AnswerRe: Maintaining old .net 1.1 bound datagrid control Pin
Paddy Boyd28-Jan-09 2:03
Paddy Boyd28-Jan-09 2:03 
GeneralRe: Maintaining old .net 1.1 bound datagrid control Pin
jonatec28-Jan-09 2:31
jonatec28-Jan-09 2:31 
GeneralRe: Maintaining old .net 1.1 bound datagrid control Pin
Paddy Boyd28-Jan-09 2:33
Paddy Boyd28-Jan-09 2:33 
GeneralRe: Maintaining old .net 1.1 bound datagrid control Pin
jonatec28-Jan-09 2:34
jonatec28-Jan-09 2:34 
QuestionProblem with Login Control Pin
sarang_k27-Jan-09 22:23
sarang_k27-Jan-09 22:23 
AnswerRe: Problem with Login Control Pin
mr_muskurahat28-Jan-09 3:54
mr_muskurahat28-Jan-09 3:54 
GeneralRe: Problem with Login Control Pin
Ashutosh Phoujdar28-Jan-09 19:47
Ashutosh Phoujdar28-Jan-09 19:47 
GeneralRe: Problem with Login Control Pin
mr_muskurahat28-Jan-09 23:01
mr_muskurahat28-Jan-09 23:01 
QuestionHow to sum selected gridview values? Pin
TheRedEye27-Jan-09 21:27
TheRedEye27-Jan-09 21:27 
AnswerRe: How to sum selected gridview values? Pin
N a v a n e e t h27-Jan-09 22:01
N a v a n e e t h27-Jan-09 22:01 
AnswerRe: How to sum selected gridview values? Pin
Manas Bhardwaj27-Jan-09 22:39
professionalManas Bhardwaj27-Jan-09 22:39 
QuestionProblem in installing DotNetNuke Pin
Piyush Vardhan Singh27-Jan-09 20:34
Piyush Vardhan Singh27-Jan-09 20:34 
AnswerRe: Problem in installing DotNetNuke Pin
N a v a n e e t h27-Jan-09 20:38
N a v a n e e t h27-Jan-09 20:38 
GeneralRe: Problem in installing DotNetNuke Pin
Piyush Vardhan Singh27-Jan-09 20:45
Piyush Vardhan Singh27-Jan-09 20:45 

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.