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 Wanet Telecoms Ltd 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: ggeorgiou01
  • Content: Threads
  • Order by date
  1. ggeorgiou01

    RequiredFieldValidator not working on deployed server

    Hi All, I have a simple form, which contains a asp textbox and a requiredfieldvalidator, with a submit button. I can run my website up locally and there is not a problem, and the form works like it should and displays an error message, if the field is left blank. However... Once deployed to...
  2. ggeorgiou01

    <img src="test.eps"> problem viewing.

    Hi all, I have a problem, where my customers have to upload product images in an .eps format. But when I come to displaying the file on the web page, <img src="test.eps"> It doesnt seem to want to display the image. Is there a known problem in displaying an .eps file with the img tag ...
  3. ggeorgiou01

    Enabling viewstate in a control

    Hi all, I have a default.aspx file which contains a user control called contractsearch.ascx. This control contains a dropdownlist with witch, i would like to do an action on the SelectedIndexChanged event. But when i select an option in my dropdownlist the contents dissapear from the...
  4. ggeorgiou01

    DropdownList autopostback

    Hi, I have a problem where I have a default.aspx page, with serveral usercontrols in the .aspx page. I also have a dropdownlist on one of the controls with the attribute autopostback set to true. When i change the selectedindex of this dropdownlist, it always seems to remove the control from...
  5. ggeorgiou01

    DropDownList AutoPostBack=&quot;true&quot;

    Hi, I have a problem where I have a default.aspx page, with serveral usercontrols in the .aspx page. I also have a dropdownlist on one of the controls with the attribute autopostback set to true. When i change the selectedindex of this dropdownlist, it always seems to remove the control from...
  6. ggeorgiou01

    Unrecognized attribute 'requirePermission'

    Hi All, I have recently installed .net framework 2.0 and converted an old application from 1.1 to 2.0. I am working locally on my machine and have configured the application within IIS to work with ASP.NET version: 2.0.50727. But I am getting the following error...
  7. ggeorgiou01

    How do i...Convert an unbound datagrid to a datatable

    Hi all, I have a windows form, which has a datgrid on it. The datagrid has no datasource and the user will enter all the rows. On the click of a button i want to pass the items within the datagrid (could be 1, 2, 3 rows) into a DataTable, typed variable. is this possible How do i do this ...
  8. ggeorgiou01

    Dynamically entering data into a readonly datagridview

    Morning all, I am encountering an extremly annoying prooblem. Which is doing my head in. Can you guys help ? I my windows form i am using a datagridview. Ok so heres what im doing: __________________________________________________________ On Load, i am binding my columns to the datagrid...
  9. ggeorgiou01

    Dynamically adding rows to a datgrid view

    Hi all, I have a windows application and a couple of text entry textboxes, which once filled in, and the button has been clicked, will enter a row into a datagrid.... this works fine (see code) if (this.CustomerInfoUc.OrderLinesDg.Rows.Count == 0) {...
  10. ggeorgiou01

    Refrencing a datagrid from a user control on a form

    Hi, I am relativly new to windows application programming, as i have always been a web developer. But i have encountered a problem. I have a form, and on my form i have a user control (in the user control i have a datagrid: OrderLinesDg) What i want to be able to do is, from a textbox (which...
  11. ggeorgiou01

    Screen Flashes when i debug a project

    Hi all, When i debug a any project of mine in .net, my screen flashes (like it is opening up a dos window in full screen) for about 5 seconds, then its reverts back to windows. Does anybody know what is causing this ??? How to resolve this issue ??? Many Thanks, -g-
  12. ggeorgiou01

    Unable to start debugging on the web server. Access is denied.

    Hi All, I have a problem. When i try to debug one/any of my c# projects on web server, i receive the following message. "Error while trying to run project: Unable to start debugging on the web server. Access is denied." I have browsed multiple forums and articles, and they all state the same...
  13. ggeorgiou01

    C# News Ticker

    Hi all, I would like to create a 'BBC' news ticker to add to my website. I need to feed into an sql database to feed the news ticker. Does anybody have any good website/code, that i can have a look at ?
  14. ggeorgiou01

    Report Parameter

    Hi all, I have set up a report in SQL server solutions with 2 parameters, Years & Month. These parameters are NON - Queried parameters, and i have manually set them up. At the top of each of my parameter dropdownlist i have a show all option. but this will not work. How do i unable this...
  15. ggeorgiou01

    show string variable to pure HTML

    Hi all, I have a form with a description field on it. This description field is a "ASP textbox", and it saves away into the database with a data type of "TEXT". My problem is: for example if i was to enter the following ___________________________________ hello I want this to be on a new...
  16. ggeorgiou01

    Using - System.Security.Principal.WindowsIdentity.GetCurrent.Name()

    Hi, For tracing and other things I need to know the username of the user who is logged in to the pc on which (s)he is running my ASPX page. I was using: System.Security.Principal.WindowsIdentity.GetCurrent.Name() But that provides me with: SERVERNAME\ASPNET I was hoping for the windows login...
  17. ggeorgiou01

    HeaderTemplateItem in a Repeater

    Hi there, I have a ItemDataBound event on my repeater, and i would like to set the HeadTemplateItem to Visble=false; How would i do this in c# code? is this possible ? Many Thanks, George
  18. ggeorgiou01

    Repeater - showing one set of data, in 2 columns

    Hi all, I have a repeater (show below). <asp:repeater id="MyAppsRptr" runat="server"> <itemtemplate> # DataBinder.Eval(Container, "DataItem.Description") %> </ItemTemplate> </asp:repeater> which outputs onto a webpage like so... 1 2 3 4 5 6 How i want to display my data is in 2...
  19. ggeorgiou01

    Looping round a datagrid

    Hi all, I have a datagrid and i have a itemdatabound event on that datagrid. What i want to do is in the itemdatabound event i want to loop round every single row, and place some code against it... How do i loop round a datagrid ??? Many Thanks, George
  20. ggeorgiou01

    2 Background Images for 1 style class

    Hi all, I have a style (see below) in a style sheet, this works fine, but what i also want to do is add another background image to the same style. But only the last image is being shown on my page !!! How do i add 2 background images to the same style class ?? .Green { background-position...

Part and Inventory Search

Back
Top