No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Try this and see [code=asp] connstring ="provider=sqloledb;data source=[B]YOURSERVER[/B];initial catalog=[B]DATABASENAME[/B];user id=[B]USERNAME[/B];password=[B]PASSWORD[/B];" set conntemp = server.createobject("ADODB.Connection") conntemp.ConnectionString=connstring conntemp.Open() Response.Write(conntemp.State) [/code]
This is an ASP forum, better ask in the ASP.NET section or Refer to this, [URL="http://www.codeproject.com/KB/aspnet/EmailApplication.aspx"]http://www.codeproject.com/KB/aspnet/EmailApplication.aspx[/URL] It might help you.
Yes it is possible. On the top of the main ASP page, put [ICODE]<% On Error Resume Next %>[/ICODE] At the end of your page, put an email system if you want, where in body part of the mail, you make it response the error and send you Example sending …
You simply need the following steps: 1. Connect to you database 2. Open connection 3. Launch your query for the value you want 4. In the javascript part of your page, response.write the data For example, if the data variable is Timelog [CODE]<% response.write(Timelog) %> or <%=Timelog%> [/CODE] 5.Finally close …
The End.