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

    make image file path universal

    Under myapp, there is a folder IMAGES. I stored all images into it. How to make imageurl universal so that no matter where to install the image still displa? I try: //localhost/myapp/IMAGES/XXX.gif ~/myapp/xxx.gif but none of them work after I deployed.
  2. adonet

    Work on differnt project located at diffrent server?

    I installed VS.NET in local pc. Is it possible to work on differnt ASP.NET project located at diffrent server? (all servers have no VS.NET installed) What components and files need to install?
  3. adonet

    mapping problem in windows 2003 web server

    I use code as bellow to map crystal report to crystalreportviewer. It works fine at workstation but not in web server which is windows 2003. I think that it may be mapping problem. How to map this line? me.crvOrder.ReportSource = REPORT_ PATH REPORT_PATH =...
  4. adonet

    What files need to install if Web server did not have VS.NET 2003?

    I want to move app to a Windows 2000 server. Server did not have VS.NET 2003 installed. In order to run app, what files need to install into this server? As I know, framework need to install, whatelse?
  5. adonet

    DataSet as reportSource

    you can use a view in sql server. You can use more than one table to create a view.
  6. adonet

    CR did not print after moving to web server

    I have two app, APP_A and APP_B. APP_A is in WEBSERVER and connected to the SQL server(SQL authentication) at the same machine: WEBSERVER. There is no problem to print crystal report. APP_B is in WEBSERVER also but connected to the SQL server(Windows authentication) which is in different...
  7. adonet

    After moving app from local to web server, crystal report not work

    Yes, I use code as bellow: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim rpt As New MyReport 'The report you created. Dim myConnection As SqlConnection Dim MyCommand As New SqlCommand Dim myDA As New...
  8. adonet

    After moving app from local to web server, crystal report not work

    LV, thank you for help but I do not think it is deploy problem. Let me tell you more detail: I have two app, APP_A and APP_B. APP_A is in WEBSERVER and connected to the SQL server(SQL authentication) at the same machine: WEBSERVER. There is no problem to print crystal report. APP_B is in...
  9. adonet

    After moving app from local to web server, crystal report not work

    My app works very well in local pc. After moving app from local pc to web server, crystal report did not work. There is only crystalreportviewer on the screen and no any error message. At web server, I have vs.net 2003 installed. Do I need do something else to make crystal report work?
  10. adonet

    How to fix authentication?

    I have a asp.net appl named ORDER in WEB_SERVER(Windows 2003, IIS 6), if I open //localhost/ORDER/, it got data from another server named OrderServer(Windows authentication SQL server), but if I open //WEB_SERVER/ORDER, no data to get. How to fix it? I code: Authentication mode = Windows...
  11. adonet

    What need to setup for Windows server?

    My computer's OS is Windows 2000, IIS 5. I created a MYAPP, it connected to a Windows authentication SQL server(OrderServer) which is in a Windows 2000 server. In web.config file, I code: Authentication mode = Windows, Idetity = impsersonate. It works fine. Today, when I moved MYAPP to WEB...
  12. adonet

    DropDownList.SelectedValue Member

    I have the same problem in dropdown list selected value but not in datagrid. I used the code: strCity = ddl.selecteditem.value I passed strCity to another function. It works on and off and took me a lot of time to debug. Finally, I made a text box and code like:(make text box invisible)...
  13. adonet

    Which server need to update?

    My asp.net app stored in ServerA and data stored in ServerB. In order to get more fast performance, which server need to update?
  14. adonet

    How to get more toolbar back in crystal report?

    I try to design a crystal report in vb.net and found that there missing some toolbar. How to get them back into vb.net?
  15. adonet

    Make first item as blank in dropdown list

    Thank you. I got it finally: Me.ddlOrder.Items.Insert(0, New ListItem("", "value"))
  16. adonet

    select * from tables or from view?

    I have two store procedures, which one is better? 1) select * from many tables, add joining, where clause, order by... 2) create a view in which get the same tables, add joining, where clause, order by..., and then create a store procedure, select * from view. The only thing I concerned is the...
  17. adonet

    Windows authenticatiion connection string

    There are about 500 users in out company. How to do it?
  18. adonet

    Windows authenticatiion connection string

    Thank you. I just copy the code or need change it? For example, different user has different username and password.
  19. adonet

    Windows authenticatiion connection string

    I have a windows app and connected to a windows authentication SQL server-OrderSQL and works fine. Here is connection string: "data source=OrderSQL;initial catalog=Order;integrated security=SSPI;persist security info=False;Enlist=True;Pooling=False;Connection Lifetime=30" I used this string in...
  20. adonet

    Make first item as blank in dropdown list

    How to Make first item as blank in dropdown list if bind table no blank row?

Part and Inventory Search

Back
Top