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
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

16 Posted Topics

Member Avatar for anup.maverick

Try string.Split should work. If you want validate you can write a regex for the same. Thanks.

Member Avatar for bru moses
0
1K
Member Avatar for nithysony

Here's a great awesome [c# interview question video playlist](http://www.youtube.com/playlist?list=PL5753E1DFB675A268) . This is a great c# mock interview question video. The person has demonstrated how c# interviews actually happen. http://www.youtube.com/watch?v=hPXXCdK7nmk

Member Avatar for normantyago
1
512
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
188
Member Avatar for priyamsc
Member Avatar for questpond
0
305
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
514
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
104
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
106
Member Avatar for ryathegr8

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

Member Avatar for ryathegr8
0
169
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
481
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
134
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
825
Member Avatar for dips255
Member Avatar for SunnySideUp
Member Avatar for questpond
0
230
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
363
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
185
Member Avatar for denmarkstan

The End.