//
archives

Archive for

ASP.NET Datagrid with pagination

Create aspx file and write name with “customer.aspx” <asp:datagrid id=”dgCustomer” runat=”server” BackColor=”White” Width=”100%” AutoGenerateColumns=”False” BorderColor=”#999999″ BorderStyle=”Solid” BorderWidth=”1px” CellPadding=”3″ GridLines=”Vertical” ForeColor=”Black” AllowPaging=”True” PageSize=”20″ PagerStyle-Position=”TopAndBottom” PagerStyle-Mode=”NumericPages” CssClass=”pager”> <SelectedItemStyle Font-Bold=”True” ForeColor=”White” BackColor=”#000099″></SelectedItemStyle> <AlternatingItemStyle BackColor=”#CCCCCC”></AlternatingItemStyle> <HeaderStyle Font-Bold=”True” HorizontalAlign=”Center” ForeColor=”White” BackColor=”Black”></HeaderStyle> <FooterStyle BackColor=”#CCCCCC”></FooterStyle> <Columns> <asp:BoundColumn Visible=”False” DataField=”CIF”></asp:BoundColumn> <asp:TemplateColumn> <ItemStyle HorizontalAlign=”Center” Width=”30px”></ItemStyle> <ItemTemplate> <input type=”checkbox” id=”chkDelCustomer” runat=”server” NAME=”chkDelCustomer”> </ItemTemplate> </asp:TemplateColumn> <asp:BoundColumn … Continue reading

Answer Interview Question by Penelope Trunk

Copyright : http://blog.penelopetrunk.com/2008/02/19/the-answer-to-the-toughest-interview-question/ December 6th 2011, my Yahoo mobile receiving SMS Chat : “bro, it’s good for your blog “, and give me link in Penelope Trunk Blog, so without second thought i have copy the artikel to this blog. There’s a lot of advice on this blog about how to interview: Tell good stories, … Continue reading

Oracle Job Schedule (Run Procedure with schedule)

Example Oracle job schedule : BEGIN DBMS_SCHEDULER.CREATE_JOB( job_name          =>  ‘bt_auto_schedule’, job_type          =>  ‘STORED_PROCEDURE’, job_action        =>  ‘bt_job’,–procedure name start_date        =>  TO_TIMESTAMP_TZ(’30-DEC-2008 00:00:00′,’DD-MM-YYYY HH24:MI:SS’), repeat_interval   =>  ‘FREQ = DAILY; INTERVAL = 1’); END; / BEGIN dbms_scheduler.enable(‘bt_auto_schedule’); END; /  — List all existing jobs: SELECT * FROM all_scheduler_jobs; — Disable temporary a job: BEGIN dbms_scheduler.disable(‘populate_nodes’, TRUE); END; / … Continue reading

EXPORT / IMPORT ORACLE (ORACLE DUMP)

Create database directories Execute the following commands to create a database directory. This directory must point to a valid directory on the same server as the database: Login SQLPlus 1. Start Menu > run > type “cmd” <enter> 2. c:\>set oracle_sid=<oracle_sid> 3. c:\>sqlplus system/<pwd> SQL> CREATE DIRECTORY dmpdir AS ‘/opt/oracle’; Directory created. SQL> GRANT read, … Continue reading

Install Mail Server/SMTP Server Windows Server 2003

SMTP Server Setup (IIS 6.0) The Simple Mail Transfer Protocol (SMTP) service provided by IIS is a simple component for delivering outgoing e-mail messages. Delivery of a message is initiated by transferring the message to a designated SMTP server. Based on the domain name of the recipient e-mail address, the SMTP server initiates communications with … Continue reading

Installing Oracle 10g for Windows

Installing Oracle 10g database software : Insert Oracle CD , the autorun window opens automatically. If you are installing from network or hard disk, click setup.exe in the installation folder. The Oracle Universal Installer (OUI) will run and display the Select Installation Method Window. Choose Basic Installation: Select this option to quickly install Oracle Database … Continue reading

Enter your email address to follow this blog and receive notifications of new posts by email.

Join 10 other subscribers
December 2011
M T W T F S S
 1234
567891011
12131415161718
19202122232425
262728293031  

Archives

Web Statistic

Blog Stats

  • 187,132 hits