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 -

Rate this item
(0 votes)

if you want to get the selected index or text of a asp.net
RadioButtonList using jquery then use the codes below -

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";}}

Friday, 25 January 2013 13:55

how to export to excel by openxml

Written by
Rate this item
(0 votes)

exporting to data in excel is a very common practice
in business website.one can use asp.net Response methods
to export to excel which is easy to do using a gridview.but
contents not appear properly like there will be white back-
ground over excel rows and this way is not efficient too.

Thursday, 17 January 2013 13:56

how to get profile and membership data in dnn module

Written by
Rate this item
(0 votes)

getting dnn user information from dotnetnuke module is
easy.

you can get dotnetnuke user's User Credentials
and Profile data by the following way -

Tuesday, 22 January 2013 13:55

how to use RadioButton OnCheckedChanged event

Written by
Rate this item
(0 votes)

Its easy to implement OnCheckedChanged event of RadioButton
control but most programmers makes mistake by not
including AutoPostBack="True" property in radiobutton
control.sometimes OnCheckedChanged not works for that
reason.here are the full working codes -

Wednesday, 16 January 2013 13:54

how to edit,update,delete items in DataList

Written by
Rate this item
(1 Vote)

If you used itemtemplate for items in datalist control then
you can easily delete,edit and then update items
using edititemtemplate.to do that add a itemtemplate and
edititemtemplate in the datalist.also you have to add
command buttons and command event handlers -


Latest discussions

  • No posts to display.