2
Answers

Silverlight 4: Out of the browser

David Smith

David Smith

13y
1.3k
1
At the moment I using ASP.net to Host the website. Silverlight piece is embedding within the host. With in the body of my asp.net host. I have a background.


Is it possible to right logic to say

if ( Out of the browser application )
{
    Set background image to the out brower application.

}


My goal is to have the out brower look exactly like the in browser application. That way I wont have to worry about disabling the minimize and maximize button. If this is possible I can ultimately position and margin the out of browser application to look just like the in browser application. Can someone assist me?
Answers (2)
0
wooi83
NA 18 0 21y
thanks for mentioning connection string. i did close the connection in the connection method. infact i mustn't do that.. thanks alot...
0
subbaram_k
NA 2 0 21y
int intParamCount = 0; SqlParameter[] sqlParam=new SqlParameter[2]; SqlCommand objInsertCommand=new SqlCommand("sp_InsertReserve",objConn); //specify the connection objInsertCommand.CommandType =CommandType.StoredProcedure; //Associate Parameters sqlParam[0]=new SqlParameter("@reservationUserID",SqlDbType.VarChar ); sqlParam[0].Direction =ParameterDirection.Input ; sqlParam[0].Value =UID; sqlParam[1]=new SqlParameter("@reservationBookID",SqlDbType.VarChar ); sqlParam[1].Direction =ParameterDirection.Input ; sqlParam[1].Value =BID; while(intParamCount
0
jaac79
NA 34 0 21y
In your code where are you setting the connection object?