Viewing 10 posts - 1 through 10 (of 10 total)
Thank you for your help. I think I still need to use back the current method to generate the Id, coz It is a common function used by the system...
January 6, 2006 at 12:46 am
Not sure the code below can help you or not.
If Request.ServerVariables("HTTP_X_FORWARDED_FOR") = "" Then
UserIP = Request.ServerVariables("REMOTE_ADDR")
Else
UserIP = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
End If
'Then Check whether the UserIP is under your IP...
January 5, 2006 at 3:27 am
This Topic is resolved. Please refer to http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=23&messageid=231494
Thank you.
October 28, 2005 at 7:15 am
Thank you for all of you help. I think I know what to do already.
October 28, 2005 at 7:12 am
Dear rsharma,
I just did a test to use the isql and osql to run the scripts and it work! Do you know why the isql and osql not so popular? Is it...
October 23, 2005 at 7:00 pm
Dear David,
Thank you for your reply. If I not mistake, the varchar length in the sql server 2000 maximum is 8000. And the scripts I have may exceed this limit....
October 23, 2005 at 6:43 pm
Yesterday morning i do a testing on the same SP. I create a testing asp page to call the SP 500 times. I open the three same asp page simultaneously, finally...
July 13, 2005 at 12:56 am
Thank for your reply. I agree that good practise in ASP can improve the speed of the website. But some time, if the processing logic is very complex which require...
July 13, 2005 at 12:48 am
I found from some acticle said that we should include the begin, commit, rollback transaction in the SP. What is the good way to include it?
I create a SP...
July 11, 2005 at 3:31 am
Viewing 10 posts - 1 through 10 (of 10 total)