Search results for query: *

  • Users: Rani
  • Order by date
  1. R

    Resize Image and Upload Image to Web Directory and write to DB

    Goal is to re-size an Uploaded image to Web Directory and write to DB Hi, I have this code. I debug to see where It is not working. I have problem at this location. Quote: Dim bitmap As New Drawing.Bitmap(imageToBeResized, imageWidth, imageHeight) Dim stream As System.IO.MemoryStream = New...
  2. R

    Hyperlink

    how do i call a procedure clickme() using a hyperlink, before using the hyperlink to navigate to the next page? I have a hyperlink called NEXT on a form. I want to bring over all the form's text field values in a session variable to the next page. but before doing that, when i click the...
  3. R

    Email from ASP.net

    I have this pc of code that sends the email. I want the break html tag to work so i can display the email properly. My<br> tag just writes as is like this " You are invited to the chat BLABLABLA. <br>The Chat commences on 11/14/2006 at 10:00 Eastern time <br> and ends on 11/14/2006 at 13:00...
  4. R

    calendar DayRender

    Can you please change the syntax to this pc of code. I want to use this on my page behind. I found this code on line. I am not able to fix the syntax. Thanks Private Sub Calendar1_DayRender(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DayRenderEventArgs) Handles...
  5. R

    Calendar, Date and Time

    I have to create a chat project. I am working on chat admin page. I have to be able to let the user use the calendar to select the date from the calendar and also user will select the time to schedule a chat. This is quiet similar to the outlook calendar scheduling. with the start time and end...
  6. R

    create Faq page

    Thanks very much.
  7. R

    create Faq page

    English Please! I followed this on this site example for an faq project. I want to clearly understand what this javascript in plain english. I am having trouble understanding this. here is the link http://aspnet.4guysfromrolla.com/articles/091504-1.aspx <script language="JavaScript">...
  8. R

    create Faq page

    Now i am trying with two div's inside a repeater. and i get this error on the second div. This is the example i followed: http://aspnet.4guysfromrolla.com/articles/091504-1.aspx <script language="JavaScript"> function ToggleDisplay(id) { var elem = document.getElementById('d' + id)...
  9. R

    create Faq page

    Does not help from what i want to do. <asp:HyperLink NavigateUrl='<%# "FaqAns.aspx?id="&databinder.eval(container.datait em,"faq_id")%>' Runat=server><%# DataBinder.Eval(Container.DataItem, "question")%></asp:HyperLink> The above does send to the page faqans.aspx. If i want to send to the...
  10. R

    create Faq page

    href <asp:HyperLink NavigateUrl='<%# "FaqAns.aspx?id="&databinder.eval(container.dataitem,"faq_id")%>' Runat=server><%# DataBinder.Eval(Container.DataItem, "question")%></asp:HyperLink> The above does send to the page faqans.aspx. If i want to send to the same page.meaning question on the top...
  11. R

    create Faq page

    Thank you it makes sense reading your suggestion. I will give it a shot and let you know how it goes. Thanks for your time.
  12. R

    create Faq page

    how to FAQ I am using .net framework 1.1 This request is for faq. I have two pages. one for question showing as links on the page when clicked a link passes the query string to go to the answer page where the answer's are displayed for the question clicked. how would i do that on the same page...
  13. R

    create Faq page

    I want to create an FAQ page like this link http://www.bigfatwebhosting.co.uk/help/index.php?view=2#top I would appreciate some tips on this. Thanks
  14. R

    Upload file to server

    Thanks for your time. Please disregard my request. I figured it out. I was not grabbing the path of the folder properly. I was doing this: str_s_folder = "c:\inetpub\wwwroot\Pictures\s_photos\" str_l_folder = "c:\inetput\wwwroot\Pictures\l_photos\" Instead of this: str_s_folder =...
  15. R

    Upload file to server

    No just as same as the other one. They both sit in the web project.
  16. R

    Upload file to server

    This is the error i get when i replaced you pc of code. Invalid path for MapPath 'c:\inetpub\wwwroot\Pictures\s_photos\Var****a.jpg'. A virtual path is expected. please refer to my previous post. Just so you know, i do not have problem with my lines of code at that part. my problem is it...
  17. R

    Upload file to server

    I have two image folders in my web server saving the actual image file in both folders. one s_folder for thumbnail and the other l_folder for large images. I want to upload images to these folders and make an entry of the file name in database field. This pc of my code does save in one folder...
  18. R

    text in ddl before binding with dataset.

    Please disregard my request. The answer to this is: when filling da adapter specify the name of the table da.Fill(ds, "countries") TG helped me out. It worked. Thanks for your time.
  19. R

    Object reference not set to an instance of an object.

    Thank you very much. It worked.
  20. R

    text in ddl before binding with dataset.

    Object reference not set to an instance of an object. This line i am stll getting error Object reference not set to an instance of an object.. Dim dr As Data.DataRow = ds.Tables("countries").NewRow
Back
Top