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 wOOdy-Soft 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
  • Content: Threads
  • 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

    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...
  6. 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?
  7. 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...
  8. 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...
  9. 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?
  10. 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?
  11. 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...
  12. 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...
  13. 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?
  14. adonet

    How to get computer name who use app?

    I use WindowsIdentity.GetCurrent.Name try to get computer name who use app but what I got are all "NT AUTHORITY". Who know how to get it?
  15. adonet

    Problem with reset button - How to clear all input?

    I found I spend a lot of time to deal with input reset. What I did like: textbox.text = "" dropdownlist.selectedindex = -1 Is it correct way?
  16. adonet

    What is difference betwwen Min Distinct and Max Distinct?

    Thare two options in views, group: Min Distinct and Max Distinct. What is difference betwwen Min Distinct and Max Distinct?
  17. adonet

    Disable cookie in all controls, text box, dropdown list...

    How to disable cookie in all controls, text box, dropdown list...
  18. adonet

    Windows 2000 user group and page security

    I am going to code security for some page. Windows 2000 network administrator will create a group named it as TOPAGE and add about 20 users into it. My program will check the user login name and user group. If the user is in the TOPAGE group, program will open the page for the user otherwise...
  19. adonet

    Back to default.aspx without re-load page

    I use Response.Redirect("default.aspx") to back to default.aspx but it reload default page every time. How to back to default.aspx without re-load page?
  20. adonet

    Windows 2000 login name?

    I try to get Windows 2000 user login ID using bellow code: System.Security.Principal.WindowsIdentity.GetCurrent.Name this only gave me COMPUTER_NAME/ASPNET. What is wrong? What I need is COMPUTER_NAME/USER_LOGIN_ID. Can someone help me?

Part and Inventory Search

Back
Top