Super User
reading html file using StreamReader class by c#
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.
keeping and using application settings in web.config file
in asp.net application or website </appSettings>
section in web.config is used to store application
setting to be used.you can keep settings in this
section as -
some practice problems for c#.net
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 -
how to add dynamic column field in GridView control
you can easily add dynamic column in GridView control
with data.there are many dynamic fields you can add
like hyperlink field,bound field,etc.
how to upgrade dotnetnuke website to upper version
upgrading dnn website to upper version is easy.one
have to follow the following steps to do upgrading.
how to publish database file as a script file with data
If you want to publish your database from one database
server to another,sql server database publishing
wizard can do that.without downloading it you can
use visual studio to publish your db as .sql script
file.then you can run this script file in another
sql server to get the database with all tables and data.
I show you how -
running application under local IIS server from Visual studio
when you run asp.net application project from visual
studio,visual studio uses their development server.
It's not the right way to develop asp.net appication.
redirecting to custom error pages in asp.net application
in asp.net application there may be different
server errors like file not found,server error,
etc.when those errors happens default ASP.NET error
page is shown which looks odd and users don't
understand what type of errors occured.to overcome
these problems it's a good idea to use own
error files.
how to run c# desktop application with full screen
If you want to run your software with same width and
height as your monitor's width and height then
implement the following technique in your application-
accessing access database in csharp dot net application
access database file is easy to use than sql server
or MySql server databases.for accessing access db
System.Data.OleDb namespace used.following are
steps are needed to use access db in .net
application.