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 Mike Lewis 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: *

  • Users: henna
  • Order by date
  1. henna

    Windows Desktop application toolbar

    Hi, Im looking at creating a windows desktop toolbar ,something similar to the MSN Search toolbar but instead of searching it will submit data to a web service for processing. The toolbar will have some input controls which will submit the data to a web service for processing. Can this be...
  2. henna

    Upload PDF Document from SQL Server

    Hi, Im using ASP.Net 2.0 with SQL Server 2000. I have a database table has some pdf documents saved as a binary data. I want to open the pdf document on a web forms. Can someone please help. Thanks
  3. henna

    Active Directory (DirectoryServices)

    Hi, Ive got a web page to search for users in Active Directory. Is there a way to limit search results in the Query filter in Active Directory. Cheers
  4. henna

    Raise Postbacks from Hyperlink

    Hi, I have a web page which dynamically creates some hyperlinks using the Response.Write("<a href='thispage.aspx?passData=12345'>some link</a>");. How can I add event handlers to these links which does postbacks after they have been rendered to the page. Please help.
  5. henna

    Raising Custom Events

    thanks for the reply, I dont think I explained the question properly. What I want to do is raise postback event when the link is clicked.
  6. henna

    Raising Custom Events

    Hi, I have a web page which dynamically creates some hyperlinks using the Response.Write("<a href='thispage.aspx?passData=12345'>some link</a>");. Is it possible to or How can I add event handlers to these links after they have been rendered to the page. Please help.
  7. henna

    DateTime question

    You are a star. Thanks a lot thats exactly what I needed.
  8. henna

    DateTime question

    Hi Im trying to return the first and last date by week number and year. week = 24 year = 2005 startdate of week? finishdate of week? Has anyone done anything similar or point me to the right direction
  9. henna

    float data type problem

    Hi, Im using float datatype to store some values in a database. When I enter 0.1 on my web form it gets stored in the database as 0.100000001490116. It works fine when I enter 1.2 or 2.5. Please help. Thanks
  10. henna

    Popup Windows

    Hi, I am currently involved in a project where I need to open a popup window and get some values back to the parent window. The popup window returns some values with 3 different categories. The problem Im having is on the parent window, a dropdown list is waiting to be populated based on the...
  11. henna

    skmMenu

    Hi, I have installed the skmMenu for a project that Im doing. I have come across a problem where I need to open a popup window from the menu control. I have tried the Url and also tried doing postbacks but havent had any luck. Could you please advise if there is a way to open popup windows...
  12. henna

    Consuming Non .Net WebServices

    Hi, I have to consume a WebMethods (SAP) web service using ASP.net. The web service looks something like this: http://servername/service?name=SomeName&Age=SomeAge I will be sending some data through the url and it return xml data. Im very new to ASP.net and would like to now the best...
  13. henna

    C# Business Logic Component

    Hi, I have been asked to Create a Business logic layer for my company. I have to create an Order.cs class with Add,Delete and Update methods and a OrderCollection using IEnumberable. The Data Access layer we are using is Microsoft's SQLHelper Class Library. The part where Im having trouble is...
  14. henna

    Problem with reading web.config

    Try this System.Configuration.ConfigurationSettings.AppSettings["connectionString"]
  15. henna

    Displaying Data with Summary rows

    Great - it works now. Thanks a lot for your help.
  16. henna

    Displaying Data with Summary rows

    Hi, Thanks for your reply. I am using SQL Server and also have tried the Rollup method. My main problem is how to get the summary header information. eg the Date Header. I have also tried the DataReader loop but havnt been able to get the results. I would really appreciate if you could...
  17. henna

    Displaying Data with Summary rows

    Hi, I have a database table which I want to display in the following format. A summary header with running totals. 10 August 1975 Description TotalExpense aasdasd $1.50 asdasd $2.50 total $4.00 11 August 1976 Description TotalExpense aasdasd $1.99 asdasd $2.50 total...
  18. henna

    Display VBscript function as a field

    Hi, You dont have to use ActiveX objects to get the user and domain names on an ASP page. You can get them directly with on you asp page.. Dim LoggedOnUser, ServerName LoggedOnUser = Request.ServerVariables("Log_User") ServerName = Request.ServerVariables("Server_Name") in you html tag...
  19. henna

    Display VBscript function as a field

    hi, assign the return value the function eg function Main() ... Main = strUser & " " & strdomain end function to bind the value to a textbox in html <input type="text" name="blah" id="blah" value="=Main()"> I would also suggest for you to change the name of the function to a more descriptive...
  20. henna

    New ASP Coder

    Try this site. Let me know if you need any coding help. http://www.w3schools.com/asp/default.asp

Part and Inventory Search

Back
Top