Articles

Articles (149)

articles

Rate this item
(2 votes)

there are many ways to take date input in php.here
is a simple way to take date input as string and
extract the individual parts of the date as day,
month,year values.this values can be used for
different purposes -

Saturday, 12 January 2013 13:55

reading html file using StreamReader class by c#

Written by
Rate this item
(2 votes)

if you want to read the content of any html file then
this tips can help you.StreamReader is used to read
the file and store data in Stringbuilder.you can modify
the Stringbuilder according to your need.

Last modified on Tuesday, 06 August 2019 08:12
Rate this item
(1 Vote)

for purposes you may want to register and run jquery
functions from code behind file.

Last modified on Monday, 19 August 2013 14:38
Rate this item
(1 Vote)

sometimes we need to show the selected row values of a gridview.
in this article i am gonna show how to show the values in
textboxes by c# programming language.

Rate this item
(1 Vote)

you may want to show smooth jquery popup when user visited
your site or on a button click in any page,etc... from code behind.

i am here sharing codes for showing popup using jquery properly -

Last modified on Monday, 19 August 2013 14:40
Friday, 25 January 2013 13:56

how to export to excel xls format using NPOI

Written by
Rate this item
(0 votes)

to properly export website data to previous version of excel
use the following example as a proper starting.one can export to
using 'Response object + gridview' but its not efficient and have some
lackings..

Rate this item
(1 Vote)

Its a common requirement.most developers want to show/hide
panel/div on a button click in datalist item.this post
will help everyone -

Last modified on Monday, 19 August 2013 14:42
Monday, 21 January 2013 13:54

how to show datalist item details in jquery popup

Written by
Rate this item
(0 votes)

t is difficult to use jquery for datalist items
because datalist items are generated dynamically
using same itemtemplate.

Last modified on Monday, 19 August 2013 14:37
Sunday, 30 December 2012 16:59

some practice problems for c#.net

Written by
Rate this item
(0 votes)

following are some practice problems for c#.net
programmers.teachers try it in classes.students
or novice c# programmers solve those problems to
practice c# programming in -

Tuesday, 18 December 2012 17:54

how to write web service by c#

Written by
Rate this item
(0 votes)

follow the steps to write web service in c# programming language-
opening a text editor,put the codes below and save the file as
web.asmx-
<%@ WebService Language="C#" class="WebService1" %>
using System;
using System.Web.Services;
[WebService(Namespace="http://www.yoursite.com/webservices/")]
class WebService {
[WebMethod]
public string SayingSomething() {
return "Hello all";}}


Latest discussions

  • No posts to display.