Skip to main content

Important point to be remember in Designing!

skip to main | skip to sidebar Designer's Blog
will show Designing tricks

Thursday, June 5, 2008
XHTML Transitional

There are very basic rules to follow for making the site xhtml transitional. It should be necessary atleast to make the site xhtml transitional compliant.

Please visit the link:
http://www.nypl.org/styleguide/xhtml/guidelines.html

To make the site xhtml strict, There are some more rules to follow but that should be done only if required.
Posted by Ansuiya Sablok at 10:23 AM 0 comments
Wednesday, June 4, 2008
Some points to remember

Please keep in mind the following points while doing the coding.

1. Quote all attribute values.
2. Find the controls which should be compatible with all browsers.
3. Place the controls properly. Take care for the design, not to be disturbed.
4. Always give alt and title to images. If you don't want to give alt to image then you can leave alt="" . Give proper title to links as well.
5. Always use small letters for html tags.
6. All the tags have their end tags. Some of them just ends with fwd slash (/) e.g.
. So make it habhi to close every tag properly.
7. Elements must be properly nested.
Posted by Ansuiya Sablok at 11:32 AM 0 comments
Monday, May 19, 2008
HTML Basic Structure





Posted by Ansuiya Sablok at 4:36 AM 0 comments
Monday, May 12, 2008
Set margin for input types

Setting the margin for input types is simple, e.g.
input[type=checkbox]
{ margin-right:8px;}
Posted by Ansuiya Sablok at 11:52 PM 0 comments
Using Themes in ASP.NET

We can use themes when we are working in .net sites. Just have to add the theme files in the project & call in the aspx or master page. We can use the CSS also for themes. Basically, we need to add the CSS in the themes so that when the developer adds some control using drag n drop then he will just have to add the theme (SkinID) from the properties window.
for details visit: http://msdn.microsoft.com/en-us/library/ykzx33wh.aspx
Posted by Ansuiya Sablok at 10:36 PM 0 comments
Meta Tag

The element provides meta-information about your page, such as descriptions and keywords for search engines and refresh rates.
Posted by Ansuiya Sablok at 9:24 PM 0 comments
Fevi Icon

Would you like to display your own icon on the browser address bar and browser tabs when visitors view your web pages?
Now it's easy to create icons and marquees for your web pages with FavIcon from Pics. Simply select a picture, logo or other graphic (of any size/resolution) for the "Source Image" and click "Generate FavIcon.ico"
http://www.chami.com/html-kit/services/favicon/
Posted by Ansuiya Sablok at 4:52 AM 0 comments
Older Posts Subscribe to: Posts (Atom) Blog Archive
▼ 2008 (11)
▼ June (2)
XHTML Transitional
Some points to remember
► May (9)
HTML Basic Structure
Set margin for input types
Using Themes in ASP.NET
Meta Tag
Fevi Icon
Some simple steps to follow while doing html codin...
Browser Specific CSS
Doctype Usage
Short Hand Properties
Contributors
Ehtesham Khan
Amrita
Ansuiya Sablok

Thanx for visiting our Blog
Design Team

Comments

Popular posts from this blog

URL Rewritting

http://www.simple-talk.com/dotnet/asp.net/a-complete-url-rewriting-solution-for-asp.net-2.0/ http://msdn.microsoft.com/en-us/library/ms972974.aspx URL Rewriting in ASP.NET Summary: Examines how to perform dynamic URL rewriting with Microsoft ASP.NET. URL rewriting is the process of intercepting an incoming Web request and automatically redirecting it to a different URL. Discusses the various techniques for implementing URL rewriting, and examines real-world scenarios of URL rewriting. (31 printed pages) Download the source code for this article. Contents Introduction Common Uses of URL Rewriting What Happens When a Request Reaches IIS Implementing URL Rewriting Building a URL Rewriting Engine Performing Simple URL Rewriting with the URL Rewriting Engine Creating Truly "Hackable" URLs Conclusion Related Books Introduction Take a moment to look at some of the URLs on your website. Do you find URLs like http://yoursite.com/info/dispEmployeeInfo.aspx?EmpID=459-099&type=summ...

SEND A PDF FILE AS AN ATTACHEMENT OF MAIL!

System.Net.Mail.MailMessage m1 = new System.Net.Mail.MailMessage(); m1.From = "manpreet@gmail.com" m1.Subject = "Test mail "; m1.Body = str.ToString(); m1.IsBodyHtml = true; m1.To.Add("jasdeep@gmail.com"); m1.CC.Add("jasdeep123@gmail.com"); m1.Attachments.Add(new Attachment(strserverpath + @"\pdf\" + PdfFileName)); smtp.Send(m1);

Sql Server Tips

IF WE WANT TO SELECT  TOP N ROWS  FROM A TABLE ,  WE USE THE FETCH NEXT  SELECT    * FROM  table1   ---//First m rows ignore first n rows ORDER BY id OFFSET n ROWS FETCH NEXT m ROWS ONLY if n=0, m=10 then first  10 rows if n=10, m=10 then first  10 rows start from 11th row Row_number()   SELECT  ROW_NUMBER() OVER(order by db.id) Insertion Simultaneouly in temp table with output clause DECLARE @table1 table (   Id int,   name nvarchar(50) ); DECLARE @table2 table (  Id int,  name nvarchar(50) ); INSERT INTO @table2 OUTPUT INSERTED.*   INTO @table1   select top 10 id, name  from FinalTable SELECT * FROM @table2; SELECT * FROM @table1;