Click here to Skip to main content
15,916,692 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Why to web pages are coming in one output Pin
Abhishek Sur6-Apr-09 22:39
professionalAbhishek Sur6-Apr-09 22:39 
Questionwebparts Pin
nithydurai6-Apr-09 19:44
nithydurai6-Apr-09 19:44 
AnswerRe: webparts Pin
Christian Graus6-Apr-09 19:51
protectorChristian Graus6-Apr-09 19:51 
GeneralRe: webparts Pin
nithydurai6-Apr-09 19:57
nithydurai6-Apr-09 19:57 
GeneralRe: webparts Pin
N a v a n e e t h6-Apr-09 20:02
N a v a n e e t h6-Apr-09 20:02 
QuestionProblem to access localhost(Email sending) Pin
Shahdat Hosain6-Apr-09 14:37
Shahdat Hosain6-Apr-09 14:37 
AnswerRe: Problem to access localhost(Email sending) Pin
N a v a n e e t h6-Apr-09 15:44
N a v a n e e t h6-Apr-09 15:44 
QuestionJavascript not being able to access a web service. Pin
Steve Holdorf6-Apr-09 12:06
Steve Holdorf6-Apr-09 12:06 
In the javascript below I get the error "Microsoft JScript runtime error: 'PersonalWebSite1.UserService' is null or not an object".

function onAddUser(e){
        var email = $get("<%= txtUserEmail.ClientID %>").value;
        var password = $get("<%= txtPassword.ClientID %>").value;
        var firstName = $get("<%= txtFirst.ClientID %>").value;
        var lastName = $get("<%= txtLast.ClientID %>").value;
        var address1 = $get("<%= txtAddress1.ClientID %>").value;
        var address2 = $get("<%= txtAddress2.ClientID %>").value;
        var city = $get("<%= txtCity.ClientID %>").value;
        var state = $get("<%= ddlState.ClientID %>").value;
        var zip = $get("<%= txtZip.ClientID %>").value;
        var parentElement = e.target.parentNode;

    PersonalWebSite1.UserService.WriteUser(email, password, firstName, lastName, address1, address2,
        city, state, zip, onWriteUserSuccess, onWriteUserFailure, parentElement);

    //Note normally returning false from the event handler code works
    //but for some reason in the latest version of FireFox it does not
    //so preventDefault is used
    e.preventDefault();
    return false;
}


The web service exists and works correctly when loaded directly. When I view the PersonalWebSite1 name space with debug intellisence the web service is not included as a method. Does anyone have any ideas why this may occur?

Thanks,



Steve
AnswerRe: Javascript not being able to access a web service. Pin
Christian Graus6-Apr-09 16:56
protectorChristian Graus6-Apr-09 16:56 
AnswerRe: Javascript not being able to access a web service. Pin
Steve Holdorf7-Apr-09 3:39
Steve Holdorf7-Apr-09 3:39 
QuestionI want my content be opened below my title link Pin
Saba026-Apr-09 10:18
Saba026-Apr-09 10:18 
AnswerRe: I want my content be opened below my title link Pin
Christian Graus6-Apr-09 11:10
protectorChristian Graus6-Apr-09 11:10 
GeneralForms Authentication - Login Page From Subdirectory Pin
tjg05246-Apr-09 9:39
tjg05246-Apr-09 9:39 
QuestionWhy the Custom Validation is firing wrongly Pin
meeram3956-Apr-09 4:44
meeram3956-Apr-09 4:44 
AnswerRe: Why the Custom Validation is firing wrongly Pin
RyanMorris6-Apr-09 6:29
RyanMorris6-Apr-09 6:29 
GeneralRe: Why the Custom Validation is firing wrongly Pin
meeram3956-Apr-09 6:44
meeram3956-Apr-09 6:44 
GeneralRe: Why the Custom Validation is firing wrongly Pin
RyanMorris6-Apr-09 7:18
RyanMorris6-Apr-09 7:18 
GeneralRe: Why the Custom Validation is firing wrongly Pin
meeram3957-Apr-09 22:19
meeram3957-Apr-09 22:19 
AnswerRe: Why the Custom Validation is firing wrongly Pin
Jain Vijay6-Apr-09 19:02
Jain Vijay6-Apr-09 19:02 
GeneralRe: Why the Custom Validation is firing wrongly Pin
meeram3957-Apr-09 22:19
meeram3957-Apr-09 22:19 
AnswerRe: Why the Custom Validation is firing wrongly Pin
Hajab6-Apr-09 19:45
Hajab6-Apr-09 19:45 
GeneralRe: Why the Custom Validation is firing wrongly Pin
meeram3957-Apr-09 22:18
meeram3957-Apr-09 22:18 
QuestionCan't send mail on localhost Pin
Yosh_6-Apr-09 4:21
professionalYosh_6-Apr-09 4:21 
AnswerRe: Can't send mail on localhost Pin
Yusuf6-Apr-09 4:33
Yusuf6-Apr-09 4:33 
GeneralRe: Can't send mail on localhost Pin
Yosh_6-Apr-09 4:38
professionalYosh_6-Apr-09 4:38 

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.