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 strongm 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. Jcarr38

    SQL Server 2005 Express startup error

    I have two directories. C:\Windows\Microsoft.NET\Framework C:\Windows\Microsoft.NET\Framework64 Both of these directories have the respected files so i tried setting this line in the machine.config as it suggested. <system.windows.forms jitDebugging="true"/> It didn't change the result on...
  2. Jcarr38

    SQL Server 2005 Express startup error

    Yeh, in the Microsoft.net directory, i thought i had a x64 framework directory and then a regular for 32 bit. I'll double check it and repost.
  3. Jcarr38

    SQL Server 2005 Express startup error

    i have vista ultimate x64. I downloaded Visual Studio 2008 Professional Edition so i have the 2.0 and 3.5 framework and now have sql server 2005 installed. I then proceeded after to install the "Microsoft SQL Server Management Studio Express Service Pack 2" and when it boots up, i get to the...
  4. Jcarr38

    Add items to array with OnClick

    thanks that works.
  5. Jcarr38

    Add items to array with OnClick

    I have this code right here. The array starts with one item in it but i have dynamic links in the front end page that say this: <a href="#" onClick="javascript:testItems('image2')">test</a> <a href="#" onClick="javascript:testItems('image3')">test</a> <a href="#"...
  6. Jcarr38

    Need syntax help

    Hello, i am more of a MS Sql guy but need help on a stored procedure. If anyone could please help me with the main sql i would greatly appreciate the help, i'm still sorta confused after looking at the documentation for MYSQL. Here is the procedure. I know ROW_NUMBER isnt for Mysql but i need...
  7. Jcarr38

    how to create photo-cycle animation with fades?

    This could help ya.. http://www.toxiclab.org/tutorial.asp?ID=71
  8. Jcarr38

    Flash Tutorial for picture slideshow

    I need help looking for a flash tutorial or any help. I've found several online for picture slideshows but i'm looking for a tutorial that can help me accomplish a picture slideshow very similar to this template site: http://www.templatemonster.com/website-templates/15279.html I'd appreciate...
  9. Jcarr38

    Connection String in web.config

    I'm familiar with .net but not so much with sharepoint but i need to be able to create a connection string in the web.config file of a sharepoint site and tap into a database. Then in one .aspx page i'll point to the tables in the DB and grab needed information. Is this possible with...
  10. Jcarr38

    Redirect User

    Ok thanks
  11. Jcarr38

    Redirect User

    I meant this... If Not User.Identity.Name= "user1" Or Not User.Identity.Name= "user2" Then Response.Redirect("/") End If
  12. Jcarr38

    Redirect User

    No i havent tried that but i know i could do something like this but it's not probably a good way of doing it. Eliminate the web.config code for the page and just put this in the actual page. What do you think? If Not Request.LogonUserIdentity.Name = "user1" Or Not...
  13. Jcarr38

    Redirect User

    Okay i've got this code in the web.config below. <location path="testpage.aspx"> <system.web> <authorization> <allow users="user2, user1"/> <deny users="*"/> </authorization> </system.web> </location> My issue is for this testpage.aspx if the user isnt either user 1 or user 2...
  14. Jcarr38

    DateTime calculation

    Thank you i appreciate the help..
  15. Jcarr38

    DateTime calculation

    I'm displaying records and using a field called ratedOn which is a datetime attribute with a getdate() default value. To display records on a page, say i wanted to only show records that are about 7 days old and anything older than 7 days, it won't display. How could i use a calculation in my...
  16. Jcarr38

    Turn ListItem into Link

    <asp:CheckBoxList AutoPostBack="true" ID="CheckBoxList1" runat="server" Width="212px" > <asp:ListItem Value="V:/projects/JG/PitchBook/PitchBook/Presentations/Test1.ppt"><a href="V:/projects/JG/PitchBook/PitchBook/Presentations/Test1.ppt">Presentation 1</a></asp:ListItem>...
  17. Jcarr38

    Buffer.append

    I'm trying to compile an email message however this line won't convert the a href tag to html, it just displays the html syntax on the email, does anyone know how i would get that to display the link? buffer.Append("To see again, <a href='/PublicSite/test/test.aspx?id=" + newRecipeID +...
  18. Jcarr38

    Trim or substring

    Thanks i appreciate it
  19. Jcarr38

    VS2005 - InitializeCulture nto a member of page

    Hello, you should maybe check this thread out. It's worth a shot. http://forums.asp.net/p/962977/1301347.aspx#1301347
  20. Jcarr38

    Trim or substring

    I've gotta field in a label that looks like this: <%# Eval("Name") %> The output looks like this: "Sam From San Francisco, CA" . How can i trim everything except the word name so it'll read just "Sam". Thanks for any help.

Part and Inventory Search

Back
Top