Jump to content
Xtreme .Net Talk

dhj

Avatar/Signature
  • Posts

    82
  • Joined

  • Last visited

Everything posted by dhj

  1. dhj

    popup calendar

    yeah i have added a text box and a calendar and i have set the visible property of calendar to false <asp:calendar id=Calendar1 runat="server" Visible="False"></asp:calendar> and in the textbox i used the following code <INPUT id=txtDateOfBirth onmousedown="txtDateOfBirth_Click" type=text runat="server"> and in my code behind page(C#) i wrote the following code public void txtDateOFBirth_Click(object sender, System.EventArgs e) { Calendar1.Visible=true; } it didn't work for onmousedown so i used onclick method but it's still not working thank you
  2. dhj

    popup calendar

    thank u converting date in to string is working perfectly thank u again but the pop up calencar thing didn't work thx
  3. i want to do a function like hotmail attachments (i want to upload some documents) uploading is working fine my problem is when i return to the previous page old data has dissapeared and i want to display the uploaded file name in a text box. i can pass it as a query string but i couldn't write that in to a text box for example say i'm composing a new mail in the hotmail i'm typping email address in to cc bcc and then click attach button then in a new page attachment details will appear after i attached and clicked on ok it's returning to the previous page where i typed email addresses and all text and what i typed is remaining in the text boxes and in a new line attached file name is displaying now my problem is all the text i typed in the 1st page will get dissapear when comming back to the 1st page plus i need to show the uploaded document name in a text box i heard that i can use session for this but i don't have any idea of using them can any one give a solution to my problem i'm using .NET and C# in my web application thamk u in advance
  4. hi i want to use a nested datagrid in my web application. data should collect from a access database i'm using .NET and C# for my application thank you
  5. hi again i'm very new to .net and C# i want to add a popup calendar in my web application. it has to be appeared when i click on a textbox (txtDate) and afterwards selected date of the pop up calendar should write in the txtDate textbox. i don't know how to write coding for a popup calendar and for the above function. i'm using .net and C# for my web application. plus can i show a date in a textbox. is there any special method to do this. cos in one of my C# function i used following code txtDate.text=Calendar1.SelectedDate; where txtDate is a text box and the Calendar1 is a Calendar it's giving me an error saying "cannot convert datetime in to string" and i want to format the date as dd/mmm/yy too thank you very much in advance
  6. hi i'm using a web application thx
  7. hi i have a problem with calendar control. calendar should appear when i click on a text box and when i select a date from the caledar it should go to the previous text box thx
×
×
  • Create New...