if an error occurs in sql, it will be raised to your application.
my advice to you is to let a single stored proc handle the verification, you may find that letting the database handle the error may be less efficient then letting the database verify a good value before hand.
i think there are...
i think the best way, and one of the fewest methods used by programmers these days is to let the database handle database activity. pass your information into a stored proc and have the stored proc determine whether it is a viable option or not... have the stored proc return a value to your...
this is just a guess, but perhaps your local computer has already registered default smtp servers to use with current e-mail applications. the .net framework may be able to detect these currently installed smtp services... or perhaps it is detecting ms smtp service running on your computer (if...
you can specify your smtp server using the smtp class property (before you send the mail obviously):
System.Web.Mail.SmtpMail.SmtpServer = "smtp.yourserver.com"
you should specify the server you are using before you send mail. i do not know how it would automatically resolve your...
hmmm, that is definitely a security issue... you should be able to do this as well:
http://localhost:1234/intranet/intramain.aspx
localhost should not prompt you for authentication ~ what operating system are you using?
joel konecny
global110.com
a lot of times if you are hosting your webserver on a broadband connection, these isps will block you from hosting on the regular port 80. you can get around this a lot of times by changing the port number of your web server to something else (1234 for example) and then passing your link around...
i am attempting to send an e-mail using .net, but the mail server i am sending through requires server authentication. this is a problem as i do not see a way to authenticate using my username / password. any help would be appreciated.
joel konecny
global110.com
i think for an internal project i would also utilize remoting. i have had discussions with various developers concerning web services on the same topic. is it a web services job to send notifications to the client concerning updates (if necessary) or should the service remain passive. i think in...
however, last post ;), i do believe that interfaces are not required to perform polymorphism. you could perform polymorphism from class inheritance if the class allows.
hmmm, as i was reading my own reply i began to realize that a method defined by an interface acts the same way as a ovverridable method of a class, except you really do not have an option to override or not.
this is, from my understand, exactly what polymorphism is.
as i understand it an interface is not an object, it is a contract. i can see how different objects can be created utilizing the same interface, but i do not see how polymorphism applies to this.
isn't polymorphism an instance where a class is derived from a base class and then overrides...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.