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
B

Banjo Ayorinde

@Banjo Ayorinde
About
Posts
44
Topics
43
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Email to Inbox, Not Spam
    B Banjo Ayorinde

    Hi, Have just developed some codes to allow users to send mails to a specified email address. The solutions work no doubt, but the mails are going to the spam mail and not into the Inbox. What might be responsible with this.... Please help out

    ASP.NET help

  • Data storage and Uploading file
    B Banjo Ayorinde

    Hi, I can successfully insert data into database fields. I can also upload file into database field. However, i wish to combine both in one operation i.e. inserting data into fields as well as uploading file in to another field. Example of fields: Name, Address, Story (where story is a field to store uploaded file) Can someone help please

    C# database help tutorial

  • Generating Incremental Values preceded with letters
    B Banjo Ayorinde

    Hi, am using sql 2005 as backend Am trying to generate auto-incremental values that is preceded with letters from my C# codes, based on user text input into database. The user input could be MAN, LADY, UNCLE etc. However, I intend to generate values into the database such as: MAN00001 MAN00002 LADY0001 LADY0002 UNCLE0001 etc. Kindly show me the way

    C# database csharp

  • Introduction to Client/Server Programming
    B Banjo Ayorinde

    Hi, Have been developing web app using c# and asp.net. I intend venturing into Client/Server Programming. Can anyone direct me to where i can get e-books to start? preferably free e-books. Thanks in anticipation.

    C# csharp asp-net sysadmin question

  • Access to the path is denied
    B Banjo Ayorinde

    Hi, I want to upload a file to a folder in production server, using the SaveAs method of the upload server control. My target folder is 'E:\inetpub\vhosts\marinasecuritieslimited.com\httpdocs\stockinfo\test_data.txt However i got this error "Access to the path 'E:\inetpub\vhosts\marinasecuritieslimited.com\httpdocs\stockinfo\test_data.txt' is denied" after clicking the upload button. Have granted asp.net user access to write the folder, yet the error is still the same. Can someone help me please?

    Web Development help csharp asp-net com sysadmin

  • Checking MAX() of a table in C#
    B Banjo Ayorinde

    Hi, I used sql 2005 as my backend. How do i check the MAX(of a field) in a table in from C# codes

    C# csharp database question

  • Mails delivery Spam Instead of Inbox
    B Banjo Ayorinde

    Hi, I develop an email application that runs fine. But it sends mails to Spam box of recepient and not to the Inbox. How do I rectify this cos i want it to be dilivered into the Inbox. Here is my code snippet for the sendindMail Method. private void sendingMail() { Dictionary<string, Stream> attachments = new Dictionary<string, Stream>(); if(NewFileUpload.HasFile) { attachments.Add(NewFileUpload.FileName, NewFileUpload.PostedFile.InputStream); } FacadeSystem.SendEmailMessage(emailToTextBox.Text, SubjectTextBox.Text, BodyTextBox.Text, attachments); } Here is my web setting for the MailSetting. Thanks

    ASP.NET question

  • disabling a row in gridview
    B Banjo Ayorinde

    Hi friend, How do i disable a row in an asp.net Gridview based on value of one of its columns. Am using C#.Net 2008 Thanks in anticipation of your assistance

    ASP.NET csharp asp-net question

  • Instance Failure Error
    B Banjo Ayorinde

    I use sql 2005 along with DAAB using asp.net (c#.Net) But when i attempt to run the app, i got this error " Instance Failure". How do I resolve this and what could be responsible. Thanks

    C# csharp asp-net database help question

  • Displaying filetype icon in Gridview
    B Banjo Ayorinde

    I want to display the icon of a file (filename.extension) that is stored in table using GridView

    ASP.NET

  • Scripting SQL 2005 Database objects and Data
    B Banjo Ayorinde

    I want to script a database in sql 2005, i only succeeded in scripting only the objects, but without tables data. How do i achieve my mission

    Database database tools question

  • Setting Grid values into Text Box
    B Banjo Ayorinde

    I want to set Data from a row in a DataGrid into independent text boxes. I mean each column of the Grid into respective Text Boxes, based on selected row. This is to enable me edit such row.

    ASP.NET css

  • Insertion from DropDownList
    B Banjo Ayorinde

    Yea! have used selectedValue property, but still pick the fisrt value and not the selected value during insertion. pls this only affect dropdownlist filled with values from a table and not that of hardcoded values

    ASP.NET question

  • Insertion from DropDownList
    B Banjo Ayorinde

    I fill a dropdownlist with values from a table's column. but when i perform an insertion operation into another table based on selected data from the dropdownlist, it only insert the first value of the dropdownlist and not the one i selected. How do i resolve this?

    ASP.NET question

  • Custom Data Access Objects
    B Banjo Ayorinde

    Am relatively new to Asp.Net and OOP. Can someone expose me to the concept of Data Access Objects and a simple application

    ASP.NET csharp asp-net

  • Validating Web Server Controls (e.g DetailsView)
    B Banjo Ayorinde

    Am using the DetailsView web server control but which to validate some fields for data entry or edit. How do I validate desired fields

    ASP.NET sysadmin question

  • Problem with Login (Asp.net Membership Providert)
    B Banjo Ayorinde

    I can't log on to my web app after deployment (which I can do before deployment). Though I use aspnet in-bult Membership Provider. Can anyone help me?

    ASP.NET asp-net help csharp sysadmin question

  • Connect SQL Server 2005 from VS.Net 2005
    B Banjo Ayorinde

    I need the C# code snipset to establish a connection with a database [LabourData.mdf] created from SQL Server 2005. 've used this but the connection was not effective: public string conet() { return "server=.;initial catalog=LabourData;uid=sa;pwd=solutions!" } Note: Am new to SQL Server 2005 Thanks

    C# csharp database sql-server visual-studio sysadmin

  • Connecting SQL Server 2005 from VS.Net 2005
    B Banjo Ayorinde

    I need the C# code snipset to establish a connection with a database [LabourData.mdf] created from SQL Server 2005. Note: Am new to SQL Server 2005 Thanks

    C# csharp database sql-server visual-studio sysadmin

  • Connecting SQLExpress codes
    B Banjo Ayorinde

    I need the C# codes snipset to establish a connection to a database [Club.mdf] created using SQlExpress bundled with visual studio.net 2005. Note: Am handling a web project. Thanks

    C# csharp database visual-studio
  • Login

  • Don't have an account? Register

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