Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #11.1K
Ranked #2K
~7K People Reached
About Me

I am a Microsoft MVP for ASP/ASP.NET and currently a CEO of a small E-learning company in India. We are very much active in making training videos , writing books and corporate trainings. Do visit my site www.questpond.com for .NET, C# , design pattern…

Favorite Tags

18 Posted Topics

Member Avatar for anup.maverick
Member Avatar for bru moses
0
1K
Member Avatar for nithysony
Member Avatar for suley04

Can you check the following Did you create DSN connection string on the local machine Ensur eyou have not added in user dsn Make sure you have proper connection string [url]www.connectionstrings.com[/url]

Member Avatar for suley04
0
178
Member Avatar for priyamsc
Member Avatar for NewASPNETDev

In this .NET Interview questions interviewer expects two things. First the importance of configuration and second in which scenarios are the above file applicable. So lets answer the question in two parts. The importance of config files ================================================== App.config, web.config and machine.config are files which store configuration data in XML …

Member Avatar for Fortinbra
0
303
Member Avatar for jigneshdesai

The list of differences are huge. In interviews you normally need to short and sweet. So we will list down top 5 differences from each section. So lets first start with the difference between 1.0 and 2.0. Support for 64 bit application. Generics SQL cache dependency Master pages Membership and …

Member Avatar for khadakbist
0
504
Member Avatar for tendaimare

It should be Label1.Forecolor = Color.Green; remove the from name , just use the enum value

Member Avatar for umamahesh2020
0
101
Member Avatar for Netcode

That happens by itself, why do you want to specify the file size. The control takes care of the same.

Member Avatar for Netcode
0
103
Member Avatar for ryathegr8

How about a simple invoicing application project which creates invoices , prints and reporting with masters.

Member Avatar for ryathegr8
0
161
Member Avatar for kgenn

[CODE]SqlConnection con =new SqlConnection(ConfigurationManager.ConnectionStrings["ConString"].ConnectionString.ToString();) SqlCommand cmd=new SqlCommand(); cmd.connection=con; con.open(); cmd.commandText="SELECT id,FirstName FROM tablename"; SqlDataReader dr; dr=cmd.ExecuteReader(); ddlname.DataSource =dr; ddlname.DataTextField = "FirstName"; ddlname.DataValueField = "id"; ddlname.DataBind(); dr.close(); con.close();[/CODE]

Member Avatar for kgenn
0
473
Member Avatar for tariqi

The below code works for me, Can you set content encoding and also can you ensure that MS word is installed on the client side. [CODE]Response.Clear(); Response.Buffer = true; Response.AddHeader("content-disposition", "attachment;filename=FileName.doc"); Response.ContentEncoding = System.Text.Encoding.UTF7; Response.ContentType = "application/vnd.word"; System.IO.StringWriter oStringWriter = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter); this.GridView1.RenderControl(oHtmlTextWriter); Response.Output.Write(oStringWriter.ToString()); Response.Flush(); …

Member Avatar for tariqi
0
130
Member Avatar for choudhuryshouvi

[CODE]Response.Buffer=<SPAN style="COLOR: blue">true;<o:p></o:p> Response.ExpiresAbsolute=DateTime.Now.AddDays(-1d); Response.Expires =-1500; Response.CacheControl = "no-cache";[/CODE]

Member Avatar for choudhuryshouvi
0
810
Member Avatar for dips255
Member Avatar for SunnySideUp
Member Avatar for sonia sardana

The above answer of functions and stored procedure is not convincing heres one below. Function reduce redudant code in SP.Function - You can not change data while in stored procedures you can , can return only one value while SP returns multiple values, functions can be called inside a SP …

Member Avatar for questpond
0
352
Member Avatar for MARKAND911

Hello Makarand, I think that will expose your password on the client side. Must be session variables would be a good thought.

Member Avatar for questpond
0
178
Member Avatar for denmarkstan
Member Avatar for TylerSBreton

The End.