Click here to Skip to main content
15,911,646 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralSubmit button in IIS Pin
Xarzu17-Mar-08 16:13
Xarzu17-Mar-08 16:13 
GeneralRe: Submit button in IIS Pin
Christian Graus17-Mar-08 17:00
protectorChristian Graus17-Mar-08 17:00 
GeneralRe: Submit button in IIS Pin
Xarzu18-Mar-08 9:05
Xarzu18-Mar-08 9:05 
QuestionFor connecting network folder, how can i input user name and password? Pin
Dong Kim17-Mar-08 14:00
Dong Kim17-Mar-08 14:00 
GeneralRe: For connecting network folder, how can i input user name and password? Pin
Paul Conrad21-Mar-08 9:25
professionalPaul Conrad21-Mar-08 9:25 
GeneralASP.NET publication Pin
Xarzu17-Mar-08 9:20
Xarzu17-Mar-08 9:20 
GeneralRe: ASP.NET publication Pin
Christian Graus17-Mar-08 9:31
protectorChristian Graus17-Mar-08 9:31 
GeneralJavascript Objects and Visual Studio 2008 Pin
GreenGiant8317-Mar-08 8:57
GreenGiant8317-Mar-08 8:57 
I have read a lot of hype about how great the new javascript support in Visual Studio 2008 is, but I am having a hard time getting it to recognize my custom javascript objects. I haven't done much work with custom javascript objects and I suspect the problem is that I simply am not defining them the way Visual Studio wants to see them.

Heres how I am building a custom object (in an seperate.js file):

function MyClass()<br />
{<br />
    ///<sumary>Object constructor</sumary><br />
    <br />
    this.myStringMember = "";<br />
    this.myMethod = function(aParameter)<br />
    {<br />
        alert(this.myStringMember + " " + aParameter);<br />
    }<br />
}


then in my web page i instatantiate an instance
var o = new MyClass();<br />
            o.myStringMember = "Chuck";<br />
            o.myMethod("races");


when I type o. in the webpage javascript the intellisense list only contains the method: constructor
I am referencing the seperate .JS file using <script type="text/javascript" src="JS/JScript1.js"></script> and I tried putting /// <reference path="JS/JScript1.js" /> at the top of my webpages javascript block.

If I define the class inside code block of the webpage's javascript then intellisense works as expected with my methods and datamemebers. What am I doing wrong? Or is that VS08 simply doesn't understand custom objects from external .JS files?


Thanks,
Matt
Questionhow upload ??? Pin
zeeShan anSari17-Mar-08 8:48
zeeShan anSari17-Mar-08 8:48 
AnswerRe: how upload ??? Pin
Christian Graus17-Mar-08 9:36
protectorChristian Graus17-Mar-08 9:36 
QuestionI need help with web form data to be inserted into database in ASP.NET Pin
ahlaj7717-Mar-08 8:08
ahlaj7717-Mar-08 8:08 
GeneralRe: I need help with web form data to be inserted into database in ASP.NET Pin
Not Active17-Mar-08 8:21
mentorNot Active17-Mar-08 8:21 
General[Message Deleted] Pin
ahlaj7717-Mar-08 9:44
ahlaj7717-Mar-08 9:44 
GeneralRe: I need help with web form data to be inserted into database in ASP.NET Pin
Mark J. Miller17-Mar-08 10:16
Mark J. Miller17-Mar-08 10:16 
GeneralRe: I need help with web form data to be inserted into database in ASP.NET [modified] Pin
ahlaj7717-Mar-08 10:40
ahlaj7717-Mar-08 10:40 
GeneralRe: I need help with web form data to be inserted into database in ASP.NET Pin
Not Active17-Mar-08 11:21
mentorNot Active17-Mar-08 11:21 
GeneralRe: I need help with web form data to be inserted into database in ASP.NET Pin
eyeseetee17-Mar-08 23:01
eyeseetee17-Mar-08 23:01 
GeneralRe: I need help with web form data to be inserted into database in ASP.NET Pin
Christian Graus17-Mar-08 10:45
protectorChristian Graus17-Mar-08 10:45 
GeneralRe: I need help with web form data to be inserted into database in ASP.NET Pin
Not Active17-Mar-08 11:13
mentorNot Active17-Mar-08 11:13 
QuestionSQLDATASOURCE Pin
Member 450523617-Mar-08 7:32
Member 450523617-Mar-08 7:32 
GeneralRe: SQLDATASOURCE Pin
Not Active17-Mar-08 7:55
mentorNot Active17-Mar-08 7:55 
GeneralRe: SQLDATASOURCE Pin
Member 450523617-Mar-08 8:21
Member 450523617-Mar-08 8:21 
QuestionHow to retrieve the Value of a Control in a Placeholder after postback Pin
jawe17-Mar-08 6:54
jawe17-Mar-08 6:54 
AnswerRe: How to retrieve the Value of a Control in a Placeholder after postback Pin
Christian Graus17-Mar-08 9:37
protectorChristian Graus17-Mar-08 9:37 
QuestionI made a Virtual Directory on the Fly, but I get a 404 when testing it. What am I doing wrong? Pin
crystal915417-Mar-08 6:44
crystal915417-Mar-08 6:44 

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.