Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
B

brettokumar

@brettokumar
About
Posts
26
Topics
21
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • change language
    B brettokumar

    hi how can change my caption depends on my language selection that is my default language is English so while my page is loading my caption are display in english if i m change my lang. in run mode i hav to display all captionj in selected lang. plz shar ur ideas

    with regards, bretto

    ASP.NET

  • using orcle server client
    B brettokumar

    hi i my pro im using orcale client server while i m using update query i run properly. but instead of query im using storeprocedure i can not execute it display error like 'invalid sql statement ' if im execute that procedure in my pl/sql it run properly my code is like in my sapx.cs file string Qry = "Exec user_insert_proc('BW100000906','127.0.0.1','acibre','BrettoKumar','09006833242hijklm', 'bretto_be@yahoo.com',2,'abraham','Bretto','Abraham','1','27-Apr-1971','','22-Sep-2008 12:37:55 AM','22-Sep-2008 12:37:55 AM','ttk','alwarpet','620001','chennai','tamilnadu','BW','04411-123456789','0441-123456789','91-98947455711','','','8237536982482857233565195638026419924352543044988390181159607082248527607624911769985440292861738021','22-Sep-2008 12:37:55')"; public string exeQry(string qry) { if (Con.State == ConnectionState.Closed) { Con.Open(); } cmd = new OracleCommand(qry, Con); cmd.ExecuteOracleNonQuery(); Con.Close(); } it display error like ORA:00900 invalide sql statement

    with regards, bretto

    ASP.NET database com sysadmin help announcement

  • using oracle client server
    B brettokumar

    hi i my pro im using orcale client server while i m using update query i run properly. but instead of query im using storeprocedure i can not execute it display error like 'invalid sql statement ' if im execute that procedure in my pl/sql it run properly my code is like public string exeQry(string qry) { int a; if (Con.State == ConnectionState.Closed) { Con.Open(); } cmd = new OracleCommand(qry, Con); a = cmd.ExecuteOracleNonQuery(); Con.Close(); return Convert.ToString(a); }

    with regards, bretto

    ASP.NET database oracle sysadmin help announcement

  • time out expired
    B brettokumar

    hi i ma using a query like to select country code using between query cause ip if im using this query i will fetch value sometime but i will display time out expired error some time. to over come this problem what can i to do can share your ideas with me my query is SELECT countryShort FROM IPCITYLATLONGISP WHERE '3678433939' between ipFrom and ipTo

    with regards, bretto

    Database help database

  • component from widows to web
    B brettokumar

    hi i m created one component inj windows application i can give the reference in my window application and can add this control in tool box in my windows application only. but in my web application i can add reference this component dll i can be added. but i can not add this control in tool box . please share your ideas with me how can i add user created windows component in web application please help me

    with regards, bretto

    ASP.NET help question

  • file upload
    B brettokumar

    hi i have assign file name in fileupload control text area while i am editing gridview i give a code like this but it display error fileupload_ads.FileName=gv_chadvert.Rows[e.NewEditIndex].Cells[4].Text; please help me

    with regards, bretto

    ASP.NET help

  • ddl binding
    B brettokumar

    hi i am binding values from database to ddl through sqldatareader records are binding in my dripdownlist but my first record is dosen't bind i.e if i have 4 records in my table. ddl is binding only three records from 2 to 4 only dosen't bind 1st record. shall i know what is the problem please help me...

    with regards, bretto

    ASP.NET help database wpf wcf question

  • paggin html
    B brettokumar

    hi i want display record in html page with pagging i am retrive the records from my database in datareader and assing these values in lable control if my record is more than 10 the pagging must be added in html code dose not use any dotnet control please help me

    with regards, bretto

    ASP.NET csharp html database help

  • calander control javascript to .net
    B brettokumar

    hi i am using javascript for calander control in my application if my textbox is a html control the date will be assign while i am choosing data from my calander control but if my textbox is a server control the date will not be assign, display script error and the page is generate while i am choosing data from my calander control and also how to store values from html control to server control like: my html control is <input id="text1" name="txt_1"> how can i get this control value to a server (lable) control please help me

    ASP.NET help csharp javascript html sysadmin

  • calander control javascript to .net
    B brettokumar

    hi i am using javascript for calander control in my application if my textbox is a html control the date will be assign while i am choosing data from my calander control but if my textbox is a server control the date will not be assign, display script error and the page is generate while i am choosing data from my calander control and also how to store values from html control to server control like: my html control is <input id="text1" name="txt_1"> how can i get this control value to a server (lable) control please help me

    with regards, bretto

    ASP.NET help csharp javascript html sysadmin

  • like query
    B brettokumar

    hi my data field is integer i give a query like this select * from news where newsid like '123%' it display error i want to display news where my newsid is start with 123 please help me

    Database help database announcement

  • smtp
    B brettokumar

    hi i am using smtp concept to sent mail . My code is like below: System.Web.Mail.MailMessage objmail = new System.Web.Mail.MailMessage(); objmail.To = "bretto.be@gmail.com"; objmail.From = "bretto.abraham@aciin.com"; objmail.Subject = "Password Recovery"; objmail.BodyFormat = MailFormat.Html; objmail.Body = "Name: " + strUserName + "\r\n" + "Password: " + strPassword; objmail.Priority = MailPriority.High; // System.Web.Mail.SmtpMail.SmtpServer = "mail.aciin.com"; // System.Web.Mail.SmtpMail.SmtpServer = "64.187.101.246"; // System.Web.Mail.SmtpMail.SmtpServer = "192.168.0.25"; System.Web.Mail.SmtpMail.Send(objmail); objmail = null; but it will display error like this: The message could not be sent to the SMTP server. The transport error code was 0x800ccc15. The server response was not available please help me.

    with regards, bretto

    ASP.NET help html com sysadmin

  • static ip address
    B brettokumar

    hi i want to store static ip address to my database because if any one upload a video form their machine at any country i have to know this uploaded file uploaded by which ip and which country so how to get static ip address please help me

    with regards, bretto

    ASP.NET database help tutorial

  • Store Procedure
    B brettokumar

    hi i am using a store procedure for passing number of value and using two parameter one is value and another one is id use to update table my store procedure like below coding but this store procedure is created but when i am execute this sp it display error like this : Conversion failed when converting the varchar value '1,2,7,8,12' to data type int. my coding is like: set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ALTER procedure [dbo].[sp_txtSplit_Summa1](@sp_Visible varchar(1000), @sp_CRID Varchar(100), @sp_Delimiter char(1)=',') as begin set nocount on declare @Item varchar(1000) declare @ItemID varchar(100) while (charIndex(@sp_Delimiter,@sp_Visible,0)<>0 and charIndex(@sp_CRID,@sp_Visible,0)<>0) begin select @Item= rtrim(ltrim(substring(@sp_Visible,1,CharIndex(@sp_Delimiter,@sp_Visible,0)-1))), @ItemID=rtrim(ltrim(substring(@sp_CRID,1,CharIndex(@sp_Delimiter,@sp_CRID,0)-1))), @sp_Visible=rtrim(ltrim(substring(@sp_visible,charindex(@sp_delimiter,@sp_Visible,0)+1,len(@sp_Visible)))), @sp_CRID=rtrim(ltrim(substring(@sp_visible,charindex(@sp_delimiter,@sp_CRID,0)+1,len(@sp_CRID)))) if len(@Item)>0 select (@item) select (@ItemID) update summa1 set age= (select @Item ) where sno= (select @ItemID ) end if len(@sp_Visible)>0 update summa1 set age= (select @sp_Visible) where sno= (select@sp_CRID) select (@item) select (@ItemID) select * from summa1 return end --CAST(CAST(@myval AS varbinary(20)) AS decimal(10,5)) exec sp_txtSplit_Summa1 '21,22,333,444,555','1,2,7,8,12',','

    with regards, bretto

    Database sharepoint help announcement

  • img src
    B brettokumar

    complie error

    with regards, bretto

    ASP.NET csharp html database design sysadmin

  • retrieve the cell value from the gridview but it returns null
    B brettokumar

    im not using any server controls

    with regards, bretto

    ASP.NET help database

  • img src
    B brettokumar

    hi it display error like this The name 'border_tr' does not exist in the current context

    with regards, bretto

    ASP.NET csharp html database design sysadmin

  • img src
    B brettokumar

    i am working in .net2.0 i am getting the imageURL from database and store this value in a variable how call this variable in design page image src . my img is html control it is not a server control with out using cookies , session my coding like .aspx.cs file borderimage="images/br.git"; .aspx <img src="<%=borderimage%>" /> but it dose not working please help me

    with regards, bretto

    ASP.NET csharp html database design sysadmin

  • select top query
    B brettokumar

    hi i am created a store procedure like this for select top list user definlly create procedure ss(@s int) as select top @s sno from summa1 order by newid() it can not create and display error how to create

    with regards, bretto

    Database database help tutorial

  • breaking point
    B brettokumar

    hi .netman i am doing a project in .net 2.0 and my os is vistra sorry my english is too bad. please don't mistake me in my codebehind file i set "breaking point " in a line. after i press F11 my project dose not run step by step it is fully debuged. and i can not get answer while mouseover on the breaking point line in codebehind .

    with regards, bretto

    ASP.NET csharp help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups