DotNetShoutout - Upcoming stories
2
Shouts

You creat a Web site that stores user's active themes in user profile objects. You need to apply user's preferred themes when they log on to the Web s ...

posted by dotnetfundadotnetfunda 2 hours, 34 minutes ago
Friday, May 25, 2012 9:58:16 PM GMT
In the InitComplete event handler. set the Theme property of the Page object based on the user profile. In the PreLoad event handeler, set the Theme property of the Page object based on the user profile. In the OnLoad event handeler, set the Theme property of the Page object based on the user profile. In the PreInit event handeler, set the Theme property of the Page object based on the user profile. (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
2
Shouts

Which of the following classes is required to draw an empty circle? (Choose all that apply.) 1. System.Drawing.Graphics 2. System.Drawing.Pen ...

posted by dotnetfundadotnetfunda 2 hours, 35 minutes ago
Friday, May 25, 2012 9:56:29 PM GMT
System.Drawing.Graphics System.Drawing.Pen Graphics class is required to draw the empty ellipse in the form of a circle, Pen class is required to set the border properties of the circle to be drawn. (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
tags:
2
Shouts

What is Event Bubbling?(Asp.net) ...

posted by dotnetfundadotnetfunda 2 hours, 38 minutes ago
Friday, May 25, 2012 9:53:46 PM GMT
Server Controls like DataGrid,DataGridView , DataList etc have other controls inside them. Example an DataGridView can have an TextBox or an button inside it. These Child Controls can not raize events by themselves,but they pass the event to the parent control (DataGridView), which is passed to the page as “ItemCommand” event. (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
2
Shouts

Can we execute any web site without the web.config file? ...

posted by dotnetfundadotnetfunda 2 hours, 39 minutes ago
Friday, May 25, 2012 9:52:31 PM GMT
Yes, application will inherit cofiguration setting from machine.config file. (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
tags:
2
Shouts

What's the difference between Codebehind=

posted by dotnetfundadotnetfunda 2 hours, 41 minutes ago
Friday, May 25, 2012 9:50:49 PM GMT
Code behind is relevant to Visual Studio only. SRC is used when you are using notepad or other text editor tool. (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
tags:
2
Shouts

How do you turn off cookies for one page in your site? ...

posted by dotnetfundadotnetfunda 2 hours, 43 minutes ago
Friday, May 25, 2012 9:49:12 PM GMT
Use the Cookie.Discard Property which Gets or sets the discard flag set by the server. When true, this property instructs the client application not to save the Cookie on the user’s hard disk when a session ends. (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
2
Shouts

What are the expiration policies for Cached objects? ...

posted by dotnetfundadotnetfunda 2 hours, 44 minutes ago
Friday, May 25, 2012 9:47:38 PM GMT
There are two policies for expiration of Cached objects : - 1.Absolute expiration: Which is a fixed duration for expiration. The object with an absolute expiration period of say 1minute , will expire completely after 1 min . (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
tags:
2
Shouts

SQL SERVER – A Puzzle – Fun with SEQUENCE in SQL Server 2012 – Guess the Next Value « SQL Server Journey with SQL Authority

posted by pinaldavepinaldave 4 hours, 22 minutes ago
Friday, May 25, 2012 8:10:09 PM GMT
Yesterday my friend Vinod Kumar wrote excellent blog post on SQL Server 2012: Using SEQUENCE. I personally enjoyed reading the content on this subject. While I was reading the blog post, I thought of very simple new puzzle. Let us see if we can try to solve it and learn a bit more about Sequence. Here is the script, which I executed. USE TempDB GO -- Create sequence CREATE SEQUENCE dbo.SequenceID AS BIGINT START WITH 3 INCREMENT 1 MINVALUE 1 MAXVALUE 5 CYCLE NO CACHE; GO -- Following ... (more)
category: SQL | clicked: 0 | comment | | source: blog.sqlauthority.com
2
Shouts

Object Pipelines

posted by BlackWaspBlackWasp 13 hours, 13 minutes ago
Friday, May 25, 2012 11:18:51 AM GMT
A pipeline is a chain of connected steps that process information. In object pipelines, each step receives an object and performs an action using it before passing an object to the next step. This repeats until every step is complete. (more)
category: Foundation | clicked: 0 | comment | | source: www.blackwasp.co.uk
tags:
2
Shouts

User Password Expired filter attribute with ASP.NET MVC

posted by lenielleniel 20 hours, 47 minutes ago
Friday, May 25, 2012 3:45:10 AM GMT
A recent set of requirements I’ve been playing with deals with passwords. This one specifically handles password expiration. Given that I’m working with ASP.NET MVC I know I can rest assured that there’s some great (read awesome) way of implementing a given requirement. This is exactly what happened and I want to show you how to have a clean and beautiful solution to this problem. Read on... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.leniel.net
tags:
2
Shouts

Ajax AutoCompleteExtender TextBox In Master Page Asp.Net

posted by amitjainamitjain 23 hours, 40 minutes ago
Friday, May 25, 2012 12:51:29 AM GMT
In this Example i'm explaining how to use Ajax AutoCompleteExtender TextBox On Master Page In Asp.Net. (more)
category: Ajax | clicked: 0 | comment | | source: www.csharpaspnetarticles.com
tags:
1
Shouts

09. Getting Testing Done in the Sprint – Test Tasks on the Board

posted by ClemensReijnenClemensReijnen 1 day, 18 minutes ago
Friday, May 25, 2012 12:13:29 AM GMT
It seems obvious that you need to have activities in the sprint for your testing activities. At least when you have something in your Definition Of Done what covers testing, like: (more)
category: Agile | clicked: 0 | comment | | source: www.clemensreijnen.nl
tags:
1
Shouts

WMI

posted by dotnetfundadotnetfunda 1 day, 2 hours, 40 minutes ago
Thursday, May 24, 2012 9:51:36 PM GMT
WMI is very helpful to access remote machine details. Introduction Windows Management Instrumentation(WMI) Provides access to a rich set of management information and management events about the system, devices, and applications instrumented to the Windows Management Instrumentation (WMI) infrastructure (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
tags:
1
Shouts

SQL SERVER – A Puzzle – Fun with NULL – Fix Error 8117

posted by pinaldavepinaldave 1 day, 5 hours, 22 minutes ago
Thursday, May 24, 2012 7:09:37 PM GMT
During my 8 years of career, I have been involved in many interviews. Quite often, I act as the interview. If I am the interviewer, I ask many questions – from easy questions to difficult ones. When I am the interviewee, I frequently get an opportunity to ask the interviewer some questions back. Regardless of the my capacity in attending the interview, I always make it a point to ask the interviewer at least one question. (more)
category: SQL | clicked: 0 | comment | | source: blog.sqlauthority.com
1
Shouts

try { Response.Write(

posted by dotnetfundadotnetfunda 1 day, 6 hours, 22 minutes ago
Thursday, May 24, 2012 6:09:19 PM GMT
Select from following answers: Try Block:Finally Block Try Block: Finally Block None of the above (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
tags:
2
Shouts

How do you create a permanent cookie? ...

posted by dotnetfundadotnetfunda 1 day, 6 hours, 28 minutes ago
Thursday, May 24, 2012 6:03:29 PM GMT
Set expires property to Date.MaxValue (HttpCookie.Expires = Date.MaxValue) (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
tags:
2
Shouts

Which method of HTTP Handler gets invoked when request is received? ...

posted by dotnetfundadotnetfunda 1 day, 6 hours, 56 minutes ago
Thursday, May 24, 2012 5:35:25 PM GMT
Answer: ProcessRequest() method. (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
tags:
1
Shouts

What is wrong with this code? Server.transfer(

posted by dotnetfundadotnetfunda 1 day, 7 hours, 5 minutes ago
Thursday, May 24, 2012 5:26:44 PM GMT
Answer: It is believed that You can not use Server.Transfer method for .HTML file. It only works for .aspx pages. but that's not true. This code is correct. (more)
category: ASP.NET | clicked: 0 | comment | | source: www.dotnetfunda.com
tags:
1
Shouts

Create Password protected PDF using iTextsharp | Developers Code

posted by taanu51taanu51 1 day, 7 hours, 40 minutes ago
Thursday, May 24, 2012 4:51:48 PM GMT
Hi,In this article i would like to explain the procedure of creating password protected pdf using Itextsharp in asp.net and c#.Not only creating a pdf but also sending the pdf automatically via Email to the required user. What are the Features : 1.Simple code to generate dynamic PDF. 2.Creating Password Protected PDF using iTextSharp 3.Auto Email sending Option with attached pdf to the user. Let's start the procedure First We need to create a Design page,Add th... (more)
category: ASP.NET | clicked: 0 | comment | | source: www.developerscode.com
tags:
1
Shouts

Blumenmädchenkleider

posted by brautkleiderkaufenbrautkleiderkaufen 1 day, 9 hours, 6 minutes ago
Thursday, May 24, 2012 3:25:30 PM GMT
Schöne Prinzessin Stil Blumenmädchenkleider für Ihre Blumenmädchen. Unsere günstige Blumenmädchenkleider sind alle handgemacht und von hohe Qualität. Schöne Prinzessin Stil Blumenmädchenkleider für Ihre Blumenmädchen. Unsere günstige Blumenmädchenkleider sind alle handgemacht und von hohe Qualität. (more)
category: Smart Client | clicked: 0 | comment | | source: www.brautkleiderkaufen.de
tags:
Previous 1 2 3 4 5 6 7 8 9 10 ... 200 201 Next