1 comments
Wamp on windows vista or windows 7 installs perfectly fine but there are 2 important things to be done to get it run.  1. After installing Wamp Stop IIS, Because IIS uses Port 80 so Apache will not be able to start unless and until Port 80 is free so stop IIS.  2. The Next Most Common issue is with PHPmyadmin after when we try to run PHPmyadmin it shows PHPmyadmin...
Read More [...]
    5 comments
This Post Shows how we can Return Values From a Stored Procedure First off, your stored procedure will look like this ... CREATE PROC SomeSproc AS INSERT INTO MyTable (fieldName) VALUES ('MyValue') RETURN @@IDENTITY  Here is some sample code that will grab that return value ... Dim con As New SqlConnection("connectString ...")Dim cmd As New SqlCommand("SomeSproc",...
Read More [...]
    2 comments
SSL enables browsers to communicate with a web-server over a secure channel that prevents eavesdropping, tampering and message forgery.  You should always use SSL for login pages where users are entering usernames/passwords, as well as for all other sensitive pages on sites (for example: account pages that show financial or personal information). Configuring SSL on Windows...
Read More [...]