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 TouchToneTommy 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
  • Order by date
  1. ggeorgiou01

    RequiredFieldValidator not working on deployed server

    <div id="ProductDiv" runat="Server" class="productInfo"> <asp:label ID="NotificationLb" runat="server" Visible="false" CssClass="notification"></asp:label> <asp:ValidationSummary ID="ValidationSummary1" runat="server" HeaderText="&nbsp;Fields highlighted in yellow and marked with an...
  2. ggeorgiou01

    RequiredFieldValidator not working on deployed server

    No - Sorry I should have specified that it is on our intranet and not accessible through the net. Any ideas though ? I have seen a couple of posts on google about people having simlar problems to mine, but have failed to find a solution to the problem. G,
  3. 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...
  4. ggeorgiou01

    &lt;img src=&quot;test.eps&quot;&gt; problem viewing.

    Firstly thank you for the reply. So to get around my problem, would the best solution be.. When a user uploads a .eps file, to somehow convert them to either a .gif or .jpeg file on the upload event ?
  5. ggeorgiou01

    &lt;img src=&quot;test.eps&quot;&gt; 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 ...
  6. ggeorgiou01

    Enabling viewstate in a control

    hey jbenson, thats not it. tried taking that away, and that failed to work also.
  7. ggeorgiou01

    Enabling viewstate in a control

    vbkris thank you for your reply. yes the dropdownlist is being populated, and i am doing this on load of the control. (see my code below for the ascx file) _________________________________________________________ using System; using System.Data; using System.Configuration; using...
  8. 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...
  9. ggeorgiou01

    DropdownList autopostback

    So are you suggesting the best way of doing this is to load all controls on page_load, then depending on my button onclick, I make the relevant controls visible/hidden ?!
  10. ggeorgiou01

    DropdownList autopostback

    Morning guys, So here is my code as promised. Default.aspx --------------------------------------------- <asp:ImageButton ID="SupplierBtn" runat="server" OnClick="SupplierBtn_Click" ImageUrl="../Images/Tabs/tab_dim.gif" EnableViewState="true" /> <asp:ImageButton ID="NoteBtn" runat="server"...
  11. ggeorgiou01

    DropdownList autopostback

    Thanks for all the replys guys. I will post some of my code tommorrow morning when I get into work!
  12. ggeorgiou01

    DropdownList autopostback

    Thank you for such a swift reply Sirius. Yes - EnableViewState is set to true for both my user control and my aspx page.
  13. 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...
  14. 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...
  15. 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...
  16. 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 ...
  17. 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...
  18. 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) {...
  19. ggeorgiou01

    Refrencing a datagrid from a user control on a form

    I have nearly fixed the issue. I have tried the following code: Completion f; f.OrderTc.EnabledEnabled = true; but i get the error message: Use of unassigned local variable 'f' Does anybody now how to refrence, an item from my form, within my user control ?
  20. ggeorgiou01

    Refrencing a datagrid from a user control on a form

    Thanks MKuiper, That works a treat. How would it work if i wanted to refrencing something from my form, in my user control ?

Part and Inventory Search

Back
Top