Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
~576 People Reached
Favorite Forums

4 Posted Topics

Member Avatar for MARKAND911

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]

Member Avatar for Golden-Boy
0
161
Member Avatar for khan43

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.

Member Avatar for Golden-Boy
0
59
Member Avatar for jcarbillon

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 …

Member Avatar for Golden-Boy
0
262
Member Avatar for taurian2702

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 …

Member Avatar for Golden-Boy
0
94

The End.