Any ASP guys around these parts?

Caleb

Well-Known Member
Location
Riverton
I've got what seems to be a relatively simple problem, BUT it's kicking my butt. I'm trying to create a web form that will pass the values you give it to a stored procedure as the parameters on a ms sql database. It doesn't have to return anything really. The tricky part thus far is it has to use Windows Authentication. I've got it 99% of the way done in PHP but for the life of me, I can't get it to authenticate (using NT Authentication).

So I figured I would try and get it going in asp. I have never done anything in asp so I'm getting a bit lost. I've got the form created, but I don't know how to pass that to the stored procedure, nor do I know how to setup the stored procedure in asp. I've found several tutorials, but since asp is all new to me, I get lost very quickly.

So, anyone able to help me out? :)
 

Rusted

Let's Ride!
Supporting Member
Location
Sandy
Maybe you have this going already. But what I usually do is have the form pass the parameters into a processing.asp page that will accept the data, make the connection string and write the work.
 
Top