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 strongm 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: aimlion11yahoo
  • Content: Threads
  • Order by date
  1. aimlion11yahoo

    Bulk import from .csv file

    I have a .csv file full of email address that I upload to a folder on the web site. I need to write some asp script to insert the contents of the csv file into an existing table. Been at this for hours. Any suggestions how to write the insert statement?
  2. aimlion11yahoo

    Rename a role?

    Is there a way to rename a role? I don't want to spend the time setting up all the permissions associated with the role. Thanks,
  3. aimlion11yahoo

    Editable column in Datagrid shows original value

    I have a datagrid with an editable column. Everything works fine, but when the Edit button is clicked and the dropdown appears, the orginal value in that cell is still showing. Another way I could say this is that the dropdown does not replace the origin value of the cell, it appears along...
  4. aimlion11yahoo

    Cannot close connection

    Below is a small piece of code that connects to a database, puts the data into a DataReader, loops through the DataReader, then attemps to close the connection. I run the code, everything works. Dim myConnectionString As String = ConfigurationSettings.AppSettings("ConnectionString_BillyBob")...
  5. aimlion11yahoo

    Macro to insert text into each routine

    Is it possible to write a macro in VS2003 that would find each Sub and Function, and then insert a statement to write the name of the Sub or Function to any output file as the first line or the Sub or Function? That might have been a bit confusing, so I'll try to explain it another way: I need...
  6. aimlion11yahoo

    Regular expression to replace a pattern?

    Below is a selection of code I've highlighted. Me._oRelease.PriceShipping = .Item("PriceShipping") Me._oRelease.PriceTotal = .Item("PriceTotal") Me._oRelease.PriceTotalItems = .Item("PriceTotalItems") Me._oRelease.ReleaseGID = .Item("ReleaseGID") Me._oRelease.ReleaseStatusTypeGID =...
  7. aimlion11yahoo

    Cannot get project into VS.NET 2003

    I downloaded someone's project from the internet. I created a new folder in the wwwroot folder, copied all the files to the new folder, then create a virtual web site using IIS. The project runs fine, but now I want to get it into Visual Studio. I have tried for hours with no success. Can...
  8. aimlion11yahoo

    Server.Transfer not working

    I have a *.aspx and a *.aspx.vb page. The code-behind page calls a sub in a module. If an exception occurres in the sub, I want to redirect to an error page. How do you do that?
  9. aimlion11yahoo

    application root path in web.config

    Is there a way to set the applications root path in the web.config? Something like: <add key="RootPath" value="~" />
  10. aimlion11yahoo

    vs.net 2003 to 2005

    We are 80% done with a major application using .NET 1.1, vs.net 2003 and SQL Server 2000. I have just learned there is a plan to upgrade to vs.net 2005 and Sql Server 2005 before continuing with the project. Although upgrade will not benefit the project in any way, someone decided this was a...
  11. aimlion11yahoo

    Custom control to wrap ASP code does not execute.

    I was using the following method to insert an include file that contained some ASP code. Everything was working fine. The line <%=request.servervariables("SCRIPT_NAME")%> returned the name of the page <body MS_POSITIONING="FlowLayout"> <!-- #include...
  12. aimlion11yahoo

    Custom control prevents asp code from running.

    I was using the following method to insert an include file that contained some ASP code. Everything was working fine. The line <%=request.servervariables("SCRIPT_NAME")%> returned the name of the page <body MS_POSITIONING="FlowLayout"> <!-- #include virtual="includes/i_PageLayout_Top.ASP"...
  13. aimlion11yahoo

    Include content in the VS.NET 2003 design window

    I have some text and html that is used on numerous page throughout the project. Using the classic ASP #include directive works fine at run-time, but the content of the files cannot be seen in the VS.Net 2003 designer. Is there a way to make them appear?
  14. aimlion11yahoo

    XML Schemas per industry

    Have not worked with XML since 2001. At the time, there was a web site that was building a list of XML schemas intended for use and general acceptance amoung particular industries. Can anyone tell me if this site is still in existance, or tell me of any site where I might find a list of XML...
  15. aimlion11yahoo

    Windows Server IIS for Developers

    Does anyone know if there is some software that will allow me to create multiple web sites on my pc without using virtual directories?
  16. aimlion11yahoo

    Datagrid Header backcolor not working

    For the life of me I cannot get the BackColor property to show up. Any suggestions? <asp:DataGrid id="DataGrid1" runat="server"> <HeaderStyle ForeColor="#FF8080" BackColor="#333366"> </HeaderStyle> </asp:DataGrid>
  17. aimlion11yahoo

    Returning OUTPUT value problem

    I have a PROC name MAIN. MAIN calls 2 other PROCs: SUB1 and SUB2 When SUB1 is called, it does a INSERT INTO on the table ORDERS. A automatic number is generated for the OrderID field When SUB2 is called, it does a INSERT INTO on the table ORDER_DETAILS and the insert must contain the OrderID...
  18. aimlion11yahoo

    Passing collections to a stored procedure

    I have a number of collection each holding objects of different types. I need to populate multiple tables in the database with the contents of these collections, and I want to use a stored procedure so I can rollback the transaction if any part of it fails. The database is SQL Server 2000. My...
  19. aimlion11yahoo

    Return error message from a trigger

    Newbie question here. I would like to have a trigger check the data being entered into a column, and if it is invalid, have the trigger return an error message. Can't seem to find an example of this. Can someone point me to one? Thanks.
  20. aimlion11yahoo

    Tracking who is changing what

    We are building an inventory management system complete with BOM. It is important to track what employee is updating what tables. Currently all such tables have a Date field that is updated when a change is made, and an EmployeeID field which records the employee making the change. I am...

Part and Inventory Search

Back
Top