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
~1K People Reached
Favorite Tags
Member Avatar for djblois

I am trying to look on the web for a way to create a stored procedure that I can run and then put in multile values and this is the closest I can find: CREATE TYPE dbo.EmployeeList AS TABLE ( EmployeeID INT ); GO CREATE PROCEDURE dbo.DoSomethingWithEmployees @List AS dbo.EmployeeList …

Member Avatar for hericles
0
135
Member Avatar for djblois

I need to put a query string into a servervariable so when the user posts back to the page, the variable is still in the URL (and it will not crash). How do I do this. Here is the code that calls the page: function GoProfile(Userid) { window.document.location.href = 'AdminEditProfile.asp?UserID=' …

Member Avatar for djblois
0
141
Member Avatar for djblois

My company is using Legacy ASP with VB script. The code I am testing to try and count the rows in a stored procedure is as follows: If Not isNull(dblOrderMasterID) then Set cmdAttachCount = Server.CreateObject("ADODB.Command") cmdAttachCount.ActiveConnection = cnn 'cmdAttachCount.CommandText = "SP_OrderGetAttchID" 'cmdAttachCount.CommandType = adCmdStoredProc 'prm.Append cmdAttachCount.CreateParameter("@u_order_master_id", adNumeric, adParamInput,,dblOrderMasterID) 'Set rstAttchCount …

Member Avatar for SteveDotNet
0
621
Member Avatar for djblois

I need to set a default value in a combo box and i cannot figure it out. Sorry I am new to Javascript (and web development). I am not really asking someone to write the code for me but point me in the right direction. Function BuildTechnicianListDropDown(strSelectBoxName, intLockID) Dim rst, …

Member Avatar for djblois
0
168