Forum: ASP.NET Apr 23rd, 2009 |
| Replies: 6 Views: 654 have a look here:
http://odetocode.com/Articles/223.aspx
not exactly what your trying to do but could give you some ideas on how to display a calendar control which will only display available... |
Forum: ASP.NET Apr 22nd, 2009 |
| Replies: 6 Views: 654 what do you mean block the date between? |
Forum: ASP.NET Apr 22nd, 2009 |
| Replies: 6 Views: 654 what are you trying to acheive? Are you trying to store dates into a table? Search on dates?
Do you have any code that you need help on? |
Forum: ASP.NET Apr 17th, 2009 |
| Replies: 2 Views: 453 have a look here
http://msdn.microsoft.com/en-us/library/dz12d98w(vs.80).aspx |
Forum: ASP.NET Apr 17th, 2009 |
| Replies: 2 Views: 882 in code, say the page_load event you could do:
me.label.text = "Test Text" |
Forum: ASP.NET Apr 17th, 2009 |
| Replies: 9 Views: 579 at the top of you login page
if Session("UserName") <> "" Then
Response.Redirect("default.aspx")
End If |
Forum: ASP.NET Apr 16th, 2009 |
| Replies: 9 Views: 579 have a look here
http://www.w3schools.com/ASP/asp_sessions.asp
it shows you how to create and set sessions.
You can set the sessions with the username of the person who logs in.
Use this... |
Forum: ASP.NET Apr 15th, 2009 |
| Replies: 9 Views: 579 create a session like this
session("MySessionName") = me.txtUsername
you can then use this session in other or same page by calling like this
me.txtUsername = session("MySessionName") |
Forum: ASP.NET Apr 15th, 2009 |
| Replies: 3 Views: 586 If you have created a new DB in SQL Express and the table is in the 'app_data' folder in your project then something like this could work:
Dim conn As New SqlConnection("Data... |
Forum: ASP.NET Apr 14th, 2009 |
| Replies: 2 Views: 376 The membership settings within asp.net will allow you to do this -
have a look as this video tutorial -
http://www.asp.net/learn/videos/video-06.aspx |