Categories
Asp, Asp.net

Send Mail From Database In Batch Of 5 In Asp.Net

Send Mail From Database In Batch Of 5 In Asp.Net In this tutorial we will learn how to send Send Mail From Database In Batch Of 5 In Asp.Net.In earlier post we have discussed about How To Send Multiple Emails From Database In ASP.NET Using C#.In this post we go one step ahead, means sending mails in […]

Categories
Asp, Asp.net

How To Send Multiple Emails From Database In ASP.NET Using C#

How To Send Multiple Emails From Database In ASP.NET Using C## In this tutorial we will explain How To Send Multiple Emails From Database In ASP.NET Using C#.Here we have stored email list in SQL Server database.Here we will send mails to whole list one by one by using foreach loop. Design: <%@ Page Language="C#" […]

Categories
PHP

mysql_affected_rows example php

mysql_affected_rows example php In this post we will learn how to use MYSQL Affected Rows Example In PHP. mysql_affected_rows() functions returns the number of rows affected by the last query (INSERT, UPDATE or DELETE) associated with link_identifier, this should be called before commit. Code: <html> <head> <title>MYSQL Affected Rows Example In PHP</title> <style type="text/css"> body { […]

Categories
Asp, Asp.net

ArrayList Example In Asp.Net

ArrayList Example In Asp.Net In this post we will learn how to use ArrayList in asp.net.ArrayList dynamically resizes, as elements are added, it grows in capacity to accommodate them. Design: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>ArrayList Example In Asp.Net</title> <style type="text/css"> body { width: 980px; margin: 0px auto; […]