Click here to Skip to main content
15,898,134 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: How to Encrypt a text ? Pin
sarang_k25-Feb-09 18:49
sarang_k25-Feb-09 18:49 
AnswerRe: How to Encrypt a text ? Pin
Christian Graus25-Feb-09 18:53
protectorChristian Graus25-Feb-09 18:53 
AnswerRe: How to Encrypt a text ? Pin
Aman Bhullar25-Feb-09 20:40
Aman Bhullar25-Feb-09 20:40 
Questionhow to restrict the user to login with the same username more than one machine Pin
sbua25-Feb-09 18:19
sbua25-Feb-09 18:19 
AnswerRe: how to restrict the user to login with the same username more than one machine Pin
Christian Graus25-Feb-09 18:47
protectorChristian Graus25-Feb-09 18:47 
GeneralRe: how to restrict the user to login with the same username more than one machine Pin
sbua25-Feb-09 19:12
sbua25-Feb-09 19:12 
GeneralRe: how to restrict the user to login with the same username more than one machine Pin
Christian Graus25-Feb-09 19:53
protectorChristian Graus25-Feb-09 19:53 
QuestionHow to get output parameter from sybase procedure Pin
Praneeth Babu K25-Feb-09 17:06
Praneeth Babu K25-Feb-09 17:06 
hi,
i have a procedure getendbalance, i am passing list of retailerid's and date as input ,i have to collect endbalance as output and show it in gridview.
what i have tried is,


int Retailer = Convert.ToInt32(dsRet.Tables[0].Rows[0]["retailer_id"].ToString());

OdbcCommand cmdEndBal = new OdbcCommand("{call getendbalance(" + Retailer + ",'13-Jun-2009',@v_End_Balance OUT)}", Conn);
cmdEndBal.CommandType = CommandType.StoredProcedure;
try
{
Conn.Open();
cmdEndBal.Parameters.Add("@param_Retailer_ID", OdbcType.Numeric,22);
cmdEndBal.Parameters[0].Direction = ParameterDirection.Input;
cmdEndBal.Parameters[0].Value = Retailer;

cmdEndBal.Parameters.Add("@param_Date", OdbcType.NVarChar);
cmdEndBal.Parameters[1].Direction = ParameterDirection.Input;
cmdEndBal.Parameters[1].Value = "13-Jun-2009";

cmdEndBal.Parameters.Add("@v_End_Balance", OdbcType.Numeric);
cmdEndBal.Parameters[2].Direction = ParameterDirection.Output;

cmdEndBal.ExecuteNonQuery();
double RetVal = (double)(cmdEndBal.Parameters["@v_End_Balance"].Value);


}
catch
{
}
finally
{
Conn.Close();
}
AnswerRe: How to get output parameter from sybase procedure Pin
N a v a n e e t h25-Feb-09 17:23
N a v a n e e t h25-Feb-09 17:23 
GeneralRe: How to get output parameter from sybase procedure Pin
Praneeth Babu K25-Feb-09 17:34
Praneeth Babu K25-Feb-09 17:34 
QuestionCalling a javascript method when an asp:menu menuItem is selected? Pin
Steve Holdorf25-Feb-09 15:30
Steve Holdorf25-Feb-09 15:30 
AnswerRe: Calling a javascript method when an asp:menu menuItem is selected? Pin
Christian Graus25-Feb-09 16:24
protectorChristian Graus25-Feb-09 16:24 
QuestionRe: Calling a javascript method when an asp:menu menuItem is selected? Pin
Steve Holdorf25-Feb-09 17:40
Steve Holdorf25-Feb-09 17:40 
AnswerRe: Calling a javascript method when an asp:menu menuItem is selected? Pin
Steve Holdorf25-Feb-09 17:43
Steve Holdorf25-Feb-09 17:43 
GeneralRe: Calling a javascript method when an asp:menu menuItem is selected? Pin
JohnMcPherson121-Dec-09 3:29
JohnMcPherson121-Dec-09 3:29 
QuestionRepeater Control? Pin
Terick25-Feb-09 15:05
Terick25-Feb-09 15:05 
AnswerRe: Repeater Control? Pin
N a v a n e e t h25-Feb-09 15:16
N a v a n e e t h25-Feb-09 15:16 
AnswerRe: Repeater Control? Pin
Christian Graus25-Feb-09 16:23
protectorChristian Graus25-Feb-09 16:23 
GeneralRe: Repeater Control? Pin
Terick26-Feb-09 9:18
Terick26-Feb-09 9:18 
QuestionAutoComplete Extender contextKey Pin
stormcandi25-Feb-09 4:54
stormcandi25-Feb-09 4:54 
AnswerRe: AutoComplete Extender contextKey Pin
Geoff Readman10-Jul-10 8:00
Geoff Readman10-Jul-10 8:00 
GeneralRe: AutoComplete Extender contextKey Pin
stormcandi12-Jul-10 4:12
stormcandi12-Jul-10 4:12 
QuestionVS 2005 Circular dependency Pin
omer erakman25-Feb-09 4:39
omer erakman25-Feb-09 4:39 
AnswerRe: VS 2005 Circular dependency Pin
ToddHileHoffer25-Feb-09 7:01
ToddHileHoffer25-Feb-09 7:01 
GeneralRe: VS 2005 Circular dependency Pin
omer erakman25-Feb-09 7:59
omer erakman25-Feb-09 7:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.