Forum: Visual Basic 4 / 5 / 6 Dec 29th, 2006 |
| Replies: 5 Views: 15,617 Hi,
If you are sure to go with ini file.. you can use below pasted code.. or else you have other option to go for registry.
Public Function ReadPathFromText() As Boolean
On Error GoTo... |
Forum: ASP.NET Dec 13th, 2006 |
| Replies: 4 Views: 15,802 Hi ,
R u seaching for something like this.....
String strPop = "<script language='javascript'>" + Environment.NewLine +... |
Forum: ASP.NET Dec 9th, 2006 |
| Replies: 1 Views: 5,676 Hi,
As the Column 'ID' is unique, before inserting giv a check for existing ID and proceed with inserting to the database. or else create the ID as autonumber and insert the rest columns. so with... |
Forum: ASP.NET Dec 9th, 2006 |
| Replies: 6 Views: 1,815 Hi, Its nothing to do with the window connections.. its all related to mysql. The exception message shows Mysql error so obviously it deals with maximum connections of mysql. |
Forum: ASP.NET Dec 9th, 2006 |
| Replies: 6 Views: 1,815 Hi,
Increase the value for MAX_CONNECTIONS in MYSQL to 500 or more.. |
Forum: ASP.NET Dec 5th, 2006 |
| Replies: 3 Views: 3,301 Hello Amitha,
you can create the connection string in web.config file.
for eg:
<appSettings>
<add key = "ConnectionString" value = "Persist Security Info=False; User ID=sa; Password=;... |