Forum: C++ Oct 21st, 2008 |
| Replies: 5 Views: 1,318 there could be two type of problem here i can see !
First
template <class D>SLList<D> SLList<D>&::operator+(SLList<D> ob2) {
return this+obj2;
}
Return type should be Reference to... |
Forum: C++ Oct 21st, 2008 |
| Replies: 5 Views: 1,318 template <class D>SLList<D> SLList<D>::operator+(SLList<D> ob2) { return *this;}
for this funtion u have to traverse all the lists and add them up !
this return status just returning the one... |
Forum: ASP.NET Oct 21st, 2008 |
| Replies: 2 Views: 596 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,887 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: 691 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: 753 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: 592 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: 609 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... |