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

    how can i concatenate a value in a hyperlink

    i have a hyperlink with this properties: Text='<%# DataBinder.Eval(Container, "DataItem.RequestID") %>' NavigateUrl= 'Admin.aspx?RequestId=' but in the NavigateUrl i would like to have something like: NavigateUrl= 'Admin.aspx?RequestId=123' the hyperlink is a column in a DataGrid. so how...
  2. logi2000

    cant debug sql store proc

    i am trying to debug an sql store proc from my VB.Net IDE environment, but when i put the breakpoint in the store proc code, it doesnt breaks there, and it shows the following message: The breakpoint will not currently be hit. Unable to bind SQL breakpoint at this time. Object containing the...
  3. logi2000

    server.mappath

    what happens if i dont use server.mappath to store a file on a aspx page ?
  4. logi2000

    format a number with 6 decimals

    i want to format a number to have 6 decimal places, how can i do that ? 34.54309009 to 34.5430
  5. logi2000

    filtering a dataview

    how do i properly set a data view filtering? i have a dataview, apply the setrow filter, but when i check the rows in the data view, it has all the columns, and not only the filtered ones. any examples ?
  6. logi2000

    insert dataview rows into a datatable

    i want to insert the filter rows of a dataview inside a data table. how can i do that ?
  7. logi2000

    run a exe file in the client PC

    can i run an exe file on the client PC from a web app. ? like opening the notepad, or the mspaint application.. thanks
  8. logi2000

    windows authentication

    i have an intranet application. the first time i acces the application from the web server, a pop up windows shows up, asking for the userid, password and domain, i fill the information, and the requested page shows up, this same thing happens when i access the application from a client PC, but...
  9. logi2000

    cant connect to SQL server

    i am getting this error: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection - my asp.net application is running on win 2000 professional - my SQL server 2000 is running on windows 2003 - the usr i use to login into the web server, has rights to the...
  10. logi2000

    open an excel file

    i need to open an excel file in my internet explorer. what configuration do i need to do in explorer, in order to do this. i have open a excel file in the web browser before, but i have a machine where the file is not opening. what configuration do i need to check in the internet explorer, to...
  11. logi2000

    open excel file

    i need to open an excel file in my internet explorer. what configuration do i need to do in explorer, in order to do this. i have open a excel file in the web browser before, but i have a machine where the file is not opening. what configuration do i need to check in the internet explorer, to...
  12. logi2000

    concurrent users

    i have a web page that makes a query to a table, many users will be accesing that page. if 2 or more users call the page at the same time, will one page is going to be process before the other, or do they are process exactly at the same time. how is this manage in ASP.NET ?
  13. logi2000

    losing session variables

    why if i use vbscript or javascript to open a new window, i dont have acces to the data stored in my session variables ? is there any way to fix that ?
  14. logi2000

    dataset in session variable problem

    hi. i am storing a dataset in a session variable like this. Session["myds"] = ds ; then i use a button to call another page. like this. Response.Redirect("page2.aspx") ; in the load form of page2.aspx, i retrieve the session variable like this: datagrid1.DataSource =...
  15. logi2000

    visual studio 2002 and .net framework 1.1

    can i use visual studio 2002 with .net framework 1.1 ?
  16. logi2000

    cant acces selected value in dropdownlist

    i have a drop down list named ddl1 i am tryin to access his selected value property like this ddl1.SelectedValue but when i compile it sends me an error saying that dropdownlist does not contain a definition for SelectedValue. i am using Visual Studio .net 2002. can that be the problem...
  17. logi2000

    retrieve value from datagrid row using c#

    hi, i have a datagrid with template columns. i also have a select link button column, i want to obtain the value of the first column of the selected row. i am using c#. i have try something like dgcontrol.SelectedIndex.Rows[0].Text byt it does not return the value of the row. or it returns a ""...
  18. logi2000

    validate integer value

    is there any function in C# that validate if a data in a variable is an integer or not ?
  19. logi2000

    bound checkbox

    i have a checkbox inside a datagrid. the checkbox needs to be bound to a column table of type char(1). the cehckbox should be checked or unchecked depending on the value of the column (Y/N). how can i make to bound that checkbox to the table column, a meke it behave accordingly. i am working...
  20. logi2000

    can´t create web project

    i get this error when trying to create a new web proyect, in visual studio 2003. My OS is Windows Server 2003 and IIS is 6.0 http error 404 "folder not found" i have try to allow permit in the server extensions in the IIS, but that has not solve the problem. why can i do to fix this ? thanks.

Part and Inventory Search

Back
Top