Forum: ASP.NET Oct 21st, 2008 |
| Replies: 2 Views: 617 you can save the Body and relavent information to database .
after you can retrieve that information whenver u need.
wherever you wanted to present. |
Forum: ASP.NET Oct 21st, 2008 |
| Replies: 4 Views: 1,973 it is very simple with asp net .
Put a File Upload Button in yours controls.
suppose there is a button on urs controlls READ.
on the event handler Read on click event use this Code.
... |
Forum: ASP.NET Oct 21st, 2008 |
| Replies: 6 Views: 713 Sub Page_Load(s As Object, e As EventArgs)
Dim DayNum As Integer
DayNum = 3
Session["DayNum"] = DayNum;
End Sub
Sub Btn_Click(s As Object, e As EventArgs)
... |
Forum: ASP.NET Oct 21st, 2008 |
| Replies: 7 Views: 800 Check yours connection string it must have password.
from web.config.
change the connection string without password. |
Forum: ASP.NET Oct 21st, 2008 |
| Replies: 3 Views: 625 i have the same problem in last days . i have tried the same solution which Yousaf uddin suggested... |
Forum: ASP.NET Oct 21st, 2008 |
| Replies: 2 Views: 703 you can make access to different pages by using Session.
every user has its own role. so in database define Roles for every user.
like
there would be three fields ..
User name , Password... |