Search results for query: *

  • Users: jlcruzAME
  • Content: Threads
  • Order by date
  1. jlcruzAME

    Populating Span Tag Works For One Piece, Doesn't For Another

    link.InnerHtml = "<a href = '" + picAddress + "' target = '_blank' onclick = 'hidespan'> Click here to submit pictures and forms for WO " + woNumber + "</a>" Above is a piece of code that populates a span tag when a user clicks on a button called submit files. It will work on my system when...
  2. jlcruzAME

    Pop Up Message Box

    I found this solution while searching for a way to have a pop up message appear if a certain condition occurs on the ASP.NET site we are working on: This is in the pages <head></head> <script type="text/javascript" language="javascript"> function callMyJSFunction() {...
  3. jlcruzAME

    Suggestions for Multiple File Upload

    Currently I have a single file upload item on a page but I am in the process of looking for something to use where the user can select multiple files and upload them at the same time. So far I've seen an AJAX uploader and something that uses Silverlight, although their demo and tutorial videos...
  4. jlcruzAME

    Button Opens Link

    Below is the current code I have functioning on my laptop to test a button that passes information to another page. picAddress = "http://sitename.com" picAddress = picAddress + woNumber picAddress = picAddress + "&value2=" picAddress = picAddress + workReq...
  5. jlcruzAME

    Grab Item from GridView

    On a page that I have a gridview, one of the columns is a link for the user to open another page to upload files. Is there a way to grab a value out of the row that is clicked on? One of the columns is an ID number I need to grab when they click on this link, if possible. Here is the code for...
  6. jlcruzAME

    Calling a Stored Procedure

    Below is the code I currently have in place for calling a stored procedure: Dim SQLCon As New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("LocalSqlServer").ConnectionString) If Not SQLCon.State = ConnectionState.Open Then SQLCon.Open() End...
  7. jlcruzAME

    SQLCon.Open() Error

    I have quick question about this code as I am trying to call a stored procedure from VB.NET. Previously in my code I had tried to set up something like this: Dim SQLCon As New SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("LocalSqlServer").ConnectionString) 'SQL Select...
  8. jlcruzAME

    Moving Through Gridview

    Currently I have a page that pulls data out of a table into a gridview. One of the columns is a check box where they mark entries for completion. When they've marked all the entries they need, they click on a submit button that, at the moment, processes all the checked entries at once. Is...
  9. jlcruzAME

    Unable to Open Connection in VB Code But Rest of Site Connects

    So in this site we're building, I have a connection String in the web.config to connect to our SQL Server, and it works, as I can create users and login with them. However, I have one page that needs to grab a value from a tasble based on their username. Here is the code that runs: Dim dbCrew...
Back
Top