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: josie2007
  • Order by date
  1. josie2007

    How to use query string

    thank you ca8msm for your tip.
  2. josie2007

    How to use query string

    I am passing two values using query string like this first value = name second value = 6/12/2007 do I have to put this value within single quotaion? thanks for the help.
  3. josie2007

    Definition

    How do you define the following two methods in a lay man's terminology...without being more tech. :) ClientScript.RegisterClientScriptBlock ClientScript.GetPostBackEventReference
  4. josie2007

    Memory coruption

    I am getting memory coruption on the w3wp.exe. error message and can someone let me know what is and what casued for this to happen? thanks
  5. josie2007

    How to use compare validator

    thank you jbenson001 for response.I just twicked my query a little bit and I am able to use compare validator now. thanks again
  6. josie2007

    How to use compare validator

    sorry, I was not clear with my question. I am not sure if I could use compDate field from the database selection to compare the value to the other dropdown control. Sub StartlettingDate() Dim connectionString As String = ConnectionStrings("ConnectionString").ConnectionString...
  7. josie2007

    How to use compare validator

    I would like to use compare validator to compare the values for two dropdown controls. the field that I would like to use is not DataValueField or DataTextField
  8. josie2007

    How to disable paging in gridview using a check box

    Eventhough, I am not quite sure if this is the best approach I added a button for users to click on and off the check box for paging to be on an off. Let me know if there is another better way to hanlde this. thank you all Protected Sub btnPaging_Click(ByVal sender As Object, ByVal e As...
  9. josie2007

    How to disable paging in gridview using a check box

    Jason, thank you for the help.So far I have gotten this far with your help but I have no luck to get it to work.I guess I should find some other way to make this happen where I can add a button for uers to clik On and off...I do not know if that is the best approach but this one is over my head...
  10. josie2007

    How to disable paging in gridview using a check box

    Thank you Jason for the reply and I am still do not have a luck to get this to work... <asp:CheckBox ID="ckPaging" runat="server" Text="Enable / Disable Paging" AutoPostBack="True" Checked="true"/ > yes, the autopostback= true yes, the event fire whtn the checkbox state is changed yes...
  11. josie2007

    How to disable paging in gridview using a check box

    Thank you Jason for the help. I think i need to cast it like this in order to work. so far it works when checkbox is checked and I would like to have the paging back when the checkbox is unchecded. Protected Sub ckPaging_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs)...
  12. josie2007

    How to disable paging in gridview using a check box

    here is what I added so far when I click the check box it disable the paging but when I click it back my gridview just disapear... Protected Sub ckPaging_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ckPaging.CheckedChanged gvItem.AllowPaging = False...
  13. josie2007

    How to disable paging in gridview using a check box

    Is it possible to add a checkbox where users have a choice to disable or enable the gridview's paging function.
  14. josie2007

    ItemDataBound and gridview

    I believ there is an event called ItemDataBound for datagrid and I am just wondering what is the equivalent event for gridview
  15. josie2007

    how outputCache works

    Thanks Jason, I will do that.
  16. josie2007

    how outputCache works

    yes, if I take out the outpuccache statement, it works fine and goes to the next page when i do select different page.
  17. josie2007

    how outputCache works

    Thank you Jason for your reply and yes, those are controls and I did correct it like this <%@ OutputCache Duration="60" VaryByControl="ddLetting;ddLetting;txtDescription;page" %> but I am not sure why it is not going to the next page when I do selet.It just wait until the duration time...
  18. josie2007

    how outputCache works

    <%@ OutputCache Duration="60" VaryByParam="ddLetting; ddLetting;txtDescription" %> After I add this line of code my paging does not work. I just get stuck until the expiration date to go to the next page. How can I fix this? thanks
  19. josie2007

    Protect from SQL Injection

    Take a look at this code... Dim connectionString As String = ConnectionStrings("ConnectionString").ConnectionString Dim oOracleConn As OracleConnection = New OracleConnection(connectionString) oOracleConn.Open() Dim strStringBuilder As StringBuilder...
  20. josie2007

    Get totalRows and Row array with MySQL Database connection

    It has been mentioned by so many members in this forum in order to avoid sql injection not to use paramters instead. I would do some research in this forum how to avoid sql injection.

Part and Inventory Search

Back
Top