Search results for query: *

  1. P

    WHICH ONE IS BETTER ?? DATAGRID or HTML TABLE??

    re:datagrid vs html table i totally agree with kul.., in wiindows app. it takes a heck out of me to figure out how to control tha datagrid, but in web, its so smooth that you'll surely love it
  2. P

    confirm box

    hi, I wish to generate a condition based confirm box rather than generating it on all clicks on a button. I know the method - attributes.add('onclick','return confirm(".....");') What I want is - there's a button with name but1. on clicking button1, if me.bgcolor=color.white then 'the confirm...
  3. P

    Help! text field values lost before updating the database

    re:is that fine if it works it's obviously fine. But if you don't want the page to load each time the page is posted from itself, do keep the page load code part inside a postback event check..
  4. P

    need to return value from jscript to vb.net (am using response.write)

    re:need to return.... hey,why are you using such dangerous functions. do one thing, in your page load event, just add the following line of code (suppossing the button with which this will be linked is button1)--- button1.attributes.add("onclick","<script language=javascript>return...
  5. P

    Help! text field values lost before updating the database

    re:help text field.... put the code in the page_load event within autopostback .i.e., if not ispostback then ''your code in page load goes here end if
  6. P

    Image save in sql server:help

    how do i save an image in sql server and retrieve it out on an aspx page to show in a datagrid. <asp:BoundColumn DataField="image"> help...
  7. P

    cache problem

    re:response.cache.setnostore nopes, not wrkin. i think i missed out something to tell u. the 1st webform is a page having 2 iframes, one of which is static and the other one dynamic. now anything?
  8. P

    cache problem

    hi, i have a button on a web page(webform1) that when clicked takes me to webform2. there i do some job and on clicking a button on webform2, i am redirected to webform1. now when i perform the task on webform2 , that task will be reflected on webform1 when i am redirected back to webform1. my...
  9. P

    listbox text wrapping

    hi, i have got a listbox on a webform with the listbox's width as 120 px ( it has to be that, can not increase the width). now when i am adding items to the listbox, items that have a bigger length are not wrapped up in the listbox as it happens with text boxes. Suppose , i add an item 'dd' ...
  10. P

    problem with asppdf

    hi, i have downloaded asppdf.dll on a machine and on copying this dll to an asp.net application on another machine , i am unable to use this dll in my application. the application when run says, "com object not registered or not valid". plzz help.
  11. P

    help with pdf

    re:vis the file is already on my machine. Suppose its name is "x.pdf". When opened in the Acrobat Reader, it has the content "Hello x, how are you?" Now, there is a text box in the form where I input my search string, say "Hello". The code I am looking for will parse the PDF file and if the...
  12. P

    help with pdf

    hi, i have to read from a pdf file and store it in a string variable. i do not know the number of characters in the file and i have to search for a particular string in the file. plzzz help.
  13. P

    passing values between forms

    hi everybody, i am trying to build an application that will automate the desktop wallpaper changing phenomenon in specific time intervals. i am using a binary file in which i keep the filenames of the images that are to be displayed. the 1st form will fetch the filenames from the file and fill...
  14. P

    Creating Installation Packages

    Hey, I've just shifted from VB6 to VB.NET and I was wondering about how to create an Installation package in VB.NET as I did in VB6 with the Package and Deployment wizard. Plzzz help.. deb
Back
Top