Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #1K
~7K People Reached
Favorite Forums
Favorite Tags

28 Posted Topics

Member Avatar for Jesi523
Member Avatar for anurag.kyal

I do not think there is anything automatic as such , you will need to generate a collection with help of date and time function

Member Avatar for khadakbist
0
104
Member Avatar for dnanetwork

Even if you set a date through your email client it will be overridden by your email server. You need to ensure that the email server in a appropriate manner....no ways out.

Member Avatar for dnanetwork
0
151
Member Avatar for vishalrane

if you have set the autopostback to true it will refresh the page or make a postback.

Member Avatar for vishalrane
0
127
Member Avatar for naveedqadri
Member Avatar for khadakbist
0
329
Member Avatar for Vayne
Member Avatar for BilalAKhan

Sorry i read your post twice i understood the scenario but not the problem can you clarify your problem again. Sorry for asking you to repeat.

Member Avatar for khadakbist
0
330
Member Avatar for BilalAKhan
Member Avatar for gogs85

In listbox1 change event write the code which fills listbox2 , am i missing someting in your question

Member Avatar for NETProgrammer
0
110
Member Avatar for jigneshdesai
Member Avatar for Ramesh.KR
0
253
Member Avatar for jigneshdesai

This .NET interview question is mainly asked to test if you have used coding standards in your project. All the above three are naming conventions which are followed in programming languages to ensure a proper and neat code. Below is the explanation of each naming convention. Pascal Notation- In this …

Member Avatar for jigneshdesai
0
225
Member Avatar for kieky

Can you post specifics how you are sending email to gmail. I mean any email component etc what are you using.

Member Avatar for kieky
0
90
Member Avatar for mike9822

as you have already written the stored procedure , you can call the same via ado.net as shown in the below code. You can see the adddata stored procedure in the below code [CODE] SqlConnection conn = new SqlConnection("Server=(local);DataBase=Northwind;Integrated Security=SSPI"); conn.Open(); SqlCommand cmd = new SqlCommand("addData", conn); cmd.CommandType = CommandType.StoredProcedure; …

Member Avatar for khadakbist
0
79
Member Avatar for saravind84

Wrap your operation around update panel and use the ajax time for updates. are you looking for a complete code or the thought process how to do it.

Member Avatar for khadakbist
0
152
Member Avatar for VinayRok

You can check in the SQL itself like in the below code [CODE]select isnull("",Customercode) from customertable[/CODE]

Member Avatar for khadakbist
0
74
Member Avatar for G_Waddell
Member Avatar for khadakbist
0
164
Member Avatar for guptaalok12

if the data is coming my query string use the below code [CODE]request.querystring["status_url"];[/CODE] if its coming by http post use the below code [CODE]request.form("status_url")[/CODE]

Member Avatar for khadakbist
0
129
Member Avatar for devfresher

Generic collection are faster as they do not have boxing unboxing. They are strongly typed. Hmm by the way arguing with the interviewer does not benefit.

Member Avatar for khadakbist
0
203
Member Avatar for msaranya
Member Avatar for msaranya
0
586
Member Avatar for primagic

Let say if you have a query string as shown in the below code [CODE]http://www.xyz.com?id=123&uid=shiv[/CODE] You can then get the values in the code as shown below [CODE]request.querystring["uid"][/CODE] The above value you can then insert using ADO.NET

Member Avatar for Freon22
0
87
Member Avatar for anucom

Below are some guranteed questions in ASP.NET interview How is ASP.NET page life cycle executed? What are Httphandlers and HttpModules and difference between them? What are different kind of validator controls in ASP.NET ? How is ‘Server.Transfer’ different from ‘response. Redirect’ ? Can you explain windows, forms and passport authentication? …

Member Avatar for khadakbist
0
92
Member Avatar for NewASPNETDev
Member Avatar for Netcode
Member Avatar for techeee

You need to write a regular expression for it. What your need exactly try this ^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$

Member Avatar for Pgmer
0
162
Member Avatar for jigneshdesai
Member Avatar for paulmountford
Member Avatar for Netcode

^[a-b]{7}.[gif]|[bmp]$ I have written a general one , you need to go on the same lines

Member Avatar for Netcode
0
81
Member Avatar for jigneshdesai

No No and No. You can not create a object of abstract class -- its half defined. You can not create a object of interface as its methods and functions are empty.

Member Avatar for khadakbist
0
147

The End.