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 strongm 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: *

  1. jermine

    send form values-basic question

    In the page load event of process.aspx : string FName = Request.QueryString["FName"]; string LName = Request.QueryString["LName"]; ... hope this helps, jermine
  2. jermine

    Displaying Image from dB, getting GDI+ generic error

    I know there have been many posts on this topic, and I have looked at them but I am still having problems. I have a jpeg image which was retrieved from the database and needed to display it in a user control. In the code below, im trying to save the image into a blank image file and display it...
  3. jermine

    grouping and counting of data using xslt

    Im new with xml stuff, and i was hoping some of the gurus here can put me in the right direction. I tried the key generate-id thing but cant seem to make it work. here's my problem : I want to display the following data in a tabular format and count the data based on their grouping. My data...
  4. jermine

    Xml.Load() from file path using Directory.GetFiles not working

    Hello there, I am having trouble loading the xml files i got from a particular path. I got the idea from this particular code : Dim xmlReport As New XmlDocument For Each reportpath In IO.Directory.GetFiles(MapPath("report/"), "*.xml") xmlReport.Load(reportpath) ("report/@name").Value) Next...
  5. jermine

    XML Nodes and Repeaters

    Hello there! Im having trouble displaying the values of an xml output in a repeater. i hope you .NET gurus can help me on this. the xml output : <?xml version="1.0" encoding="utf-8" ?> - <response> - <person> <fname>harry</fname> <lname>potter</lname> <bday>07-31</bday> </person>...
  6. jermine

    Delegates and UserControls

    Hello to the .NET gurus out there. I hope you guys can help me on this... im pretty new to the idea of using delegates. I have the following user controls : 1. one that contains a calendar control - DATECONTROLLER.ASCX 2. one that contains a repeater that displays a list of item i got from...
  7. jermine

    multiple repeaters in one page

    Thanks guys!! the idea worked... i guess i was really tired already.. just overlooked the field names :) Ecreations , AtomicChip, kudos to both of you!!
  8. jermine

    multiple repeaters in one page

    this is for the first repeater, <asp:repeater id="repRoomsofMeeting" runat="server"> <ItemTemplate> <tr> <td> <asp:Label ID="txtRoom" Runat="server"> <%# DataBinder.Eval(Container.DataItem, "Room")%> </asp:Label> </td> </tr> </ItemTemplate> <Headertemplate> <table...
  9. jermine

    multiple repeaters in one page

    the two tables are not related at all. :(
  10. jermine

    multiple repeaters in one page

    hello to the .NET gurus out there. i hope you guys can help me on this. Thanks in advance! my page have two repeaters, diplaying different sets of data. repeater 1 is bound to DataTable A and repeater 2 is bound to DataTable B. Displaying values for repeater with the code for repeater 1 is ok...
  11. jermine

    How to call method in web user control

    Your idea worked!!! Thank you so much!
  12. jermine

    How to call method in web user control

    Greetings to the .NET gurus out there! Im kinda stuck at this and was hoping that you could spare time to help a newbie in .NET like me ... My app has a "MyMeeting.aspx" page where a web user control - meetings.ascx- is added. In the code behind of the meetings.ascx is a method that expects...
  13. jermine

    Mail stuck in Queue folder

    Hello there, I hope you can help me on this. My mails are stuck and in queue folder under mailroot. MailMessage msgMail = new MailMessage(); msgMail.To = "MeAsAdmin@yahoo.com" msgMail.From = "sender@yahoo.com" msgMail.BodyFormat= MailFormat.Html; msgMail.Subject = "Hello!" msgMail.Body = "You...
  14. jermine

    InnerHTML and Validation problem

    This is problem thats pretty tricky for me, but for the guru's here, i know this will be a piece of cake... I hope you guys can help a newbie like me. Im using the div tag's contentEditable property for my simple rich text editing (bold, italize, underline, color pick and createLink). Code...
  15. jermine

    update field trigger on date change

    thanks donutman for that quick fix!
  16. jermine

    update field trigger on date change

    i need to create a trigger that will update the status field in my table to 'A' (active) when its setToActive date is equal to the current date. The default value of the status field is 'I' (inactive). i have attached my code below but please see if this would work and do the trick. CREATE...
  17. jermine

    Editable ASP.NET Control

    Hello asp.net gurus! I hope you guys can help me on this because i am soo darn stumped... i was able to do this task - having a <div> element, and a simple javascript code to do rich text editing. can i do the same thing with an <asp: ??? > control? if so, please be so kind to show me how...
  18. jermine

    ContentEditable / Rich Text Editing

    So I have the usual ASP.NET form, the same as yahoo’s compose email screen minus the function of changing the font and font size, I will only allow the user to set the text to bold, italics and underline together with its short cut keys and usual functions cut and paste Ctrl-C and Ctrl-V plus...
  19. jermine

    Acrobat Browser Compatibilities

    I hope you guys can give me an insight on this. Can Acrobat reader work with: 1. IE 5.5? 2. IE 6.0? 3. Netscape 4? 4. Netscape 7? Are there any other browsers i can use? I am all ears. thanks!

Part and Inventory Search

Back
Top