Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. palagrim

    Creating Web Parts with VS 2005

    Hi, We've recently installed Sharepoint Services on our network and are in the process of migrating our current intranet over to the new service. All very nice so far. But - I've been trying to write my own Web Parts to plug into SS. I'm new to .NET so it's becoming an arduous task... but I'm...
  2. palagrim

    IIS on Windows 2K3 domain controller.

    Hi, This is all fixed now. It was just to do with IP address assignments to virtual sites. Thanks for your reply :)
  3. palagrim

    IIS on Windows 2K3 domain controller.

    Hi, I seem to be having a few issues. Here at work we have a Windows 2003 domain controller that is also hosting some internal web stuff. If I remote desktop into the server, and use "localhost" in IE, the web pages are served. If I try using either the IP address, or the domain name either on...
  4. palagrim

    Unknown number of SELECTS or something....?

    Thanks man... I cut n paste the fn_split thing from a link in the first FAQ and ended up with: select * from Table join fn_split('1,4', ',') on Table.ID = fn_split.value And it works... Nice... I really need to study this sh*t more... ;-) Thanks again.
  5. palagrim

    Unknown number of SELECTS or something....?

    Hi there, I'm currently developing an ASP application which pulls personal data out of a MS-SQL server. I should start by pointing out that I hate SQL. I don't get it and constantly struggle with it. So any help will be gratefully received. In my table I have something like: ID | Name |...
  6. palagrim

    Problems with what should be a simple query (Cursors and temp tables)

    Er.... Problem solved.... SET NOCOUNT ON at the top of the query... It appears that SQL was returning a recordset to ASP everytime it added a row to the table... Which was causing ASP to have a fit... Thank you for replying to my post! Much appreciated! :-)
  7. palagrim

    Problems with what should be a simple query (Cursors and temp tables)

    1) I have done the CREATE PROCEDURE thing in the actual stored procedure on the server. I have write access to the server and haven't had any issues creating sp's before. Just didn't cut n' paste it. 2) It's executing fine from QA. No problems - returns the correct 2 column table. The sp is...
  8. palagrim

    Problems with what should be a simple query (Cursors and temp tables)

    Good Morning! First off, let me get my disclaimer out of the way - I'm a relative newbie at this SQL lark, so please ignore the kludgy-ness of this code etc. Thanks ;-) Firstly, here's my query: SET DATEFORMAT DMY declare @issuecounter int; -- Declare declare @previssue int; -- Declare...
  9. palagrim

    Looping through tables and stuff....

    Works like a charm! Thanks George! :-)
  10. palagrim

    Looping through tables and stuff....

    Good afternoon, I was wondering if anyone could help me with a problem before I stick my fist through my monitor? Table: HEADING | URL | ACCOUNT_TYPE Blah http://1 Type 1 Blah2 http://2 Type 1 Blah3 http://3 Type 2 Blah4 http://4 Type 3 Blah5...
  11. palagrim

    Changing passwords with ADSI

    Thanks man, Had a look through the IIS settings and lo and behold... someone had reset permissions on the file I was editing... Problem solved. Thanks for replying :-)
  12. palagrim

    Changing passwords with ADSI

    Of course there IS an error with .SetPassword - General Access Denied... Which is weird...
  13. palagrim

    Changing passwords with ADSI

    Good afternoon, I'm trying to figure out a way of changing an object in Active Directory's password through a webpage. Basically, we have around 3000+ accounts on our domain (workin in a school), and our Tech Support spends a lot of time resetting students passwords when they forget them. I'm...
  14. palagrim

    Trouble with ASPCrypt

    Hi there Satish could have a point - that's one thing that I never really checked to be honest. We did a domain upgrade over the Summer and so I ditched the SQL Database for login information and decided to do it through Windows authentication and ADSI. Much cleaner :-)
  15. palagrim

    ASP with Active Directory (ADSI)

    I've just been having a flick through that link you left. Wow. Lots of stuff :-) Thanks guys, you've both been a huge help. Think I'm finally getting my head round the subject. Nice one :-)
  16. palagrim

    ASP with Active Directory (ADSI)

    Thanks damber... It's all starting to make some kinda of sense now... Obviously a mental block. I've got the thing authenticating and dumping various bits of info back at me... Just looking into the various properties that the different objects have... Thanks again for your help! :-)
  17. palagrim

    ASP with Active Directory (ADSI)

    Hi The logon_user serverVariable isn't set... It's just blank. I've tried your code by replacing strUserName with a valid user name (in this case, mine)... And nothing happens... When I try and response.write out the GrpList variable, there's nothing in it. Sorry if I'm being slow, but this...
  18. palagrim

    ASP with Active Directory (ADSI)

    Hi there, I'm looking for a primer/tutorial/any help with communicating with Active Directory from ASP 3.0. I'll be totally honest, I get using ASP with SQL databases but now (apparently) have to move over to ADSI/LDAP. I'm trying to write a typical form input login: 1)User types in...
  19. palagrim

    Formatting ASP Generated Excel Page

    Thanks for that... I managed to come up with a solution in the end. Used CSS to format the text / table so it was nice and small and then used ScriptX (available from http://www.meadroid.com/ScriptX) to force the page to print on landscape. Not exactly what I wanted to do - but close enough for...
  20. palagrim

    Formatting ASP Generated Excel Page

    Hi. I'm having trouble formatting a generated excel page. I'm using <code> <% Response.ContentType = "application/vnd.ms-excel" %> <HTML xmlns:x="urn:schemas-microsoft-com:office:excel"> <HEAD> <style> <!--table @page { mso-page-orientation: landscape...

Part and Inventory Search

Back
Top