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!

Recent content by ggeorgiou01

  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...

Part and Inventory Search

Back
Top