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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by manjulam

  1. manjulam

    Div's scroll bar does not appear in IE8

    thread215-1572221 I have a page getting loaded in one of the frames of a frameset(which gets opened in maximized window). The page has a third party navigator control inside an updatepanel(which gets rendered as a <div>) which is enclosed in a set of divs. The div's height and width are set...
  2. manjulam

    Call a web service from html

    My client has two different applications running on different servers. One is a .net application with sql server database and the other is a set of pure html pages hosted on a linux server. Now,if i need to fetch some data from the sql server in one of the html pages on the linux server, will...
  3. manjulam

    Show only one row first and then open up the rest of the table

    is there anyway to check the visibility of a table row? Then I can set the visibility of the group header to false if the details row is visible.
  4. manjulam

    Show only one row first and then open up the rest of the table

    ok, if i want to hide the said text box in the group header if there is only one row, what can be done? I tried giving conditional visibility to the textbox based on the row count but then if the row count is 1 and the text box is not displayed, the group header is also not displayed since it...
  5. manjulam

    Show only one row first and then open up the rest of the table

    I have a report where I need to show only the top row first and on click of some hyperlink, I want to open up rest of the rows. I was thinking of having two tables, one filtered to show only the first row and then the next with all the rows and then conditionally displaying them. Is there any...
  6. manjulam

    Group all non zero values

    That worked like a charm. Thanks a lot!
  7. manjulam

    Group all non zero values

    I have a report with a field "cost" which can be >= 0. i want all non zero rows to be grouped under the name "paid" and the rest in "free". I created a group with expression "cost>0" but now, each row with a non zero value is a group. That is not what I intended. Any ideas?
  8. manjulam

    SPROC shuold return all rows if optional parameter is null

    I did try that. It returns nothing when the parameter is null. I guess it has something to do with the grouping and joins. The condition has to be C.SS2BRUserID IS NOT NULL for it to return all rows. I changed it to have two SELECT clauses conditionally and made it work for now. If you have a...
  9. manjulam

    SPROC shuold return all rows if optional parameter is null

    In the following sproc, if @SS2BRUserID is not passed, I want it to return all the rows (equivalent to commenting out 'AND @SS2BRUserID IS NULL OR C.SS2BRUserID=@SS2BRUserID'). It doesnt seem to be working for me. Can anyone help me with this? SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON SET...
  10. manjulam

    Using memory stream to uplaod a file

    Hi, I need to upload a file from the client and save it to server. How can i get the file from client, save it to memorystream and then later write it out to server disk?
  11. manjulam

    Force caching of a page

    I have tried setting the cachecontrol to public. That doesnt work. I cannot set EnableSessionState to false as i have some session variables in the page.
  12. manjulam

    Force caching of a page

    No, i just want simple browser caching.
  13. manjulam

    Force caching of a page

    I have tried to cache one asp page. I have given the following code for that: Response.AddHeader "Pragma", "Cache" Response.AddHeader "cache-control","public" Response.CacheControl="Public" Response.Buffer = True 'Response.Expires=5 Response.ExpiresAbsolute=#August 06,2005 13:30:15# None of...
  14. manjulam

    Validate multiple emails in a textbox

    I got it working. I used the regular expression: \w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*([,;]\s*\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*)*

Part and Inventory Search

Back
Top