Click here to Skip to main content
15,889,992 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Make url clickable in DIV Pin
Prosanta Kundu online24-Feb-10 20:36
Prosanta Kundu online24-Feb-10 20:36 
GeneralRe: Make url clickable in DIV Pin
sumit703424-Feb-10 20:42
sumit703424-Feb-10 20:42 
GeneralRe: Make url clickable in DIV Pin
Haroon Sarwar25-Feb-10 0:38
Haroon Sarwar25-Feb-10 0:38 
AnswerRe: Make url clickable in DIV Pin
April Fans3-Mar-10 14:22
April Fans3-Mar-10 14:22 
QuestionMessaebox not showing in Ajax UpdatePanel Pin
bhushanl24-Feb-10 18:20
bhushanl24-Feb-10 18:20 
AnswerRe: Messaebox not showing in Ajax UpdatePanel Pin
Prosanta Kundu online24-Feb-10 18:41
Prosanta Kundu online24-Feb-10 18:41 
GeneralRe: Messaebox not showing in Ajax UpdatePanel [modified] Pin
bhushanl25-Feb-10 17:34
bhushanl25-Feb-10 17:34 
QuestionSyntax Error in NEW vb.net Pin
raquidd2224-Feb-10 12:21
raquidd2224-Feb-10 12:21 
i read a article,

Person data access

public void Person_Save(ref int personID, string nameFirst, string nameLast, DateTime dob)
       {
           SqlCommand cmd;
           ExecuteNonQuery(out cmd, "Person_Save",
               CreateParameter("@PersonID", SqlDbType.Int, personID, ParameterDirection.InputOutput),
               CreateParameter("@NameFirst", SqlDbType.NVarChar, nameFirst),
               CreateParameter("@NameLast", SqlDbType.NVarChar, nameLast),
               CreateParameter("@DOB", SqlDbType.DateTime, dob));
           personID = (int)cmd.Parameters["@PersonID"].Value;
           cmd.Dispose();
       }


person Business

public void Save(IDbTransaction txn)
      {
          new Demo.DataAccessLayer.PersonDataService(txn).Person_Save(ref _personID, _nameFirst, _nameLast, _dob);
      }



i implement in VB.net
Layer Access DATA
Public Sub contacto_cliente_auto_Insert(ByVal contacto_id As Integer, ByVal cliente_id As Integer, ByVal serie As String)
    'revisado
    ExecuteNonQuery(SP.Nombre.cw_co_contacto_cliente_auto.ToString(), _
            CreateParameter("@i_contacto_id", AseDbType.Integer, contacto_id), _
            CreateParameter("@i_cliente_id", AseDbType.Integer, cliente_id), _
            CreateParameter("@i_serie", AseDbType.NVarChar, serie))
End Sub

Layer Business
Public Sub contacto_cliente_auto_Insert(ByVal contacto_id As Integer, ByVal cliente_id As Integer, ByVal serie As String)
     new AccesoDatos.CRMWEB.AccesoDatos.contacto_cliente_autoCD().contacto_cliente_auto_Insert(contacto_id, cliente_id, serie)
 End Sub


then new is incorrect in Layer Business.
i have the message Syntax Error


Thanks for the time
Regards
AnswerRe: Syntax Error in NEW vb.net Pin
Bharat Jain25-Feb-10 2:25
Bharat Jain25-Feb-10 2:25 
QuestionSetting up multiple asp.net websites under a single solution? Pin
Goalie3524-Feb-10 10:15
Goalie3524-Feb-10 10:15 
QuestionGet Session in Ashx handler in MVC asp.NET application Pin
Sandeep Akhare24-Feb-10 9:44
Sandeep Akhare24-Feb-10 9:44 
QuestionAJAX ScriptManager.EnablePartialRendering does not seem to work? [modified] Pin
mhp13024-Feb-10 9:29
mhp13024-Feb-10 9:29 
QuestionHow to Save a webpage in to PDF in dotnet1.1 Pin
K.Safvi24-Feb-10 6:44
K.Safvi24-Feb-10 6:44 
AnswerRe: How to Save a webpage in to PDF in dotnet1.1 Pin
Pranay Rana24-Feb-10 17:41
professionalPranay Rana24-Feb-10 17:41 
Questionhow to find the login time and logout time using triggers in sql server2005 Pin
developerit24-Feb-10 6:40
developerit24-Feb-10 6:40 
AnswerRe: how to find the login time and logout time using triggers in sql server2005 Pin
Not Active24-Feb-10 8:55
mentorNot Active24-Feb-10 8:55 
AnswerRe: how to find the login time and logout time using triggers in sql server2005 Pin
Goalie3525-Feb-10 5:26
Goalie3525-Feb-10 5:26 
Questionhow to use charts in crystal reports using asp.net with c# Pin
developerit24-Feb-10 6:34
developerit24-Feb-10 6:34 
AnswerRe: how to use charts in crystal reports using asp.net with c# Pin
i gr824-Feb-10 19:13
i gr824-Feb-10 19:13 
Questionclick a button on a webcontrol but retain focus of current control on the form Pin
thedom224-Feb-10 1:58
thedom224-Feb-10 1:58 
AnswerRe: click a button on a webcontrol but retain focus of current control on the form Pin
R. Giskard Reventlov24-Feb-10 2:24
R. Giskard Reventlov24-Feb-10 2:24 
QuestionDeploying CAB File for ActiveX Control Pin
VikashGohil24-Feb-10 1:45
VikashGohil24-Feb-10 1:45 
QuestionAfter disabling the controls within ajax tab container which again within formview using client script not persisting values Pin
Rakesh N Bhavsar24-Feb-10 1:14
Rakesh N Bhavsar24-Feb-10 1:14 
QuestionMessage Removed Pin
24-Feb-10 1:06
Morgs Morgan24-Feb-10 1:06 
AnswerRe: ASP.NET website Pin
Gaurav Dudeja India24-Feb-10 1:12
Gaurav Dudeja India24-Feb-10 1:12 

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.