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

    last month

    I would like to get the day of previous month? I tried currentdate - 1 but it doens't work.
  2. HrvojeVd

    localhost

    I want to use my web page on localhost. But I get an error: not authorized to view page. In IIS i put authentication mode to Windows, but it doesn't work. Is there anything else I should do?
  3. HrvojeVd

    page view

    I've created a web site http://webfilozofa.net. It all lokks great in IE7 but horrible in Firefox and IE8. I'm using css styles. What could be the problem?
  4. HrvojeVd

    page view

    I've created this page http://webfilozofa.net. In IE7 looks fine in FireFox and IE8 looks horrible. Lines are everywhere and it seems like my css style sheets doen't work there. Where is the problem?
  5. HrvojeVd

    user control

    I created a login user control. When I call it from master page and when a button is clicked on user control I want to get value of user name from user control textbox and put it into textbox in master page?
  6. HrvojeVd

    new window

    I'm using javascript to open a new window, but as a result I get refreshed main page. How to prevent that?
  7. HrvojeVd

    gridView

    I'm filling gridview column from dataset. I would like to make that column hyperlink, but there is no c# properties for gridview DataNavigateUrlFormatString and DataNavigateUrlFields. Is there an alternative?
  8. HrvojeVd

    app_code

    How to use class library from folder app_code on web site? IT all works fine localy, but when i put it on web I get an erro: The type or namespace name 'Aplication' could not be found (are you missing a using directive or an assembly reference?) 'Aplication' is the class name.
  9. HrvojeVd

    table

    Is it possible to create table with two columns in witch one column will have 10 rows and the other one only one row?
  10. HrvojeVd

    master page

    I made changes on master page, but it didn't refresh on other pages that are related to master page. IS there a way to do it automaticly or I have to make chages on every page(what's the use of master page then)?
  11. HrvojeVd

    excel update

    I'm using excel file to get and save data. This code is for update data , but in excel file I get a new record with this values instead of changed one by where clause. code: DataSet DS; OleDbDataAdapter MyCommand; OleDbConnection oledbConn = new OleDbConnection(connString); oledbConn.Open()...
  12. HrvojeVd

    xml

    I'm using this code to load xml to dropdown view but I get an error : "Invalid character in the given encoding. Line 4, position 26" code: XmlDocument doc = new XmlDocument(); doc.Load("C:\\domains\\webfilozofa.net\\wwwroot\\price\\price.xml"); XmlNodeList nodeList =...
  13. HrvojeVd

    oracle connection

    I'm using this code to enter data into table, but error uppear. void getTextData(string oConn, int ID, string Ime, string Prezime) { try { using (OracleConnection connection = new OracleConnection(oConn)) {...
  14. HrvojeVd

    disable page

    How to disable page(make it gray) while loading data on to it ? I'm using ajax updatepanel.
  15. HrvojeVd

    dropwon menu

    I'm using dropdown menu for links to another pages. When a page is opened (in a new window) on my page font text become bigger. Why?
  16. HrvojeVd

    access connection

    I'm using this code to get data from database, but I get an error: "Connection string property has not been initialized." web.config: <?xml version="1.0"?> <configuration> <system.web> <customErrors mode="Off"/> <compilation debug="true"/></system.web> <connectionStrings> <add...
  17. HrvojeVd

    web reference

    I've created a web service for my site. IT works fine with files in "root". But I made also one new folder in witch I would like to use that web service and I get an error: missing reference! I put a path to that service in web config file.
  18. HrvojeVd

    GridView

    I've created gridview user control. I fill it with data from xml. Then I load it into default web form to panel, but I don't see it. Why?
  19. HrvojeVd

    web control

    I have created a web control. I would like for it to apear in toolbox. How to do that?

Part and Inventory Search

Back
Top