Dear You are right, But If you want to utilize your web space you can use DIV,Div provide more flexibility rather then table.If you want to design Unique temple from other use DIV.
Dear You are right, But If you want to utilize your web space you can use DIV,Div provide more flexibility rather then table.If you want to design Unique temple from other use DIV.
SiteNOTE,webaptive,QuickelSoft,oxite these are also best and user friendly CMS for Asp.net. for more assistance visit http://www.cmswire.com/cms/products/
Sometime in Hard disk create bad sector then it create problems.So Use Disk Manager to "0" level formating and change data cable.
This code may help you:
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
GridViewRow r = this.GridView1.Controls[0].Controls[e.RowIndex] as GridViewRow;
TextBox t= r.Controls[cell_index].Controls[control_index] as Text Box;
}
This Syntax for Grid View:
GridView.Controls(0) ------ Table
GridView.Controls(0).Controls(index) ------ GridViewRow
GridView.Controls(0).Controls(index).Controls(index) ------ TableCell. For BoundField, we can use
Use C language,IT will automatically generate executable files.
<iframe
style="filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);"
src="Image URL" height="450" width="300" name="myiframe"></iframe>
This code may help you.
you can use selection sort function.
void selection(int elements[], int array_size)
{
int i, j, k;
int min, temp;
for (i = 0; i < maxsize-1; i++)
{
min = i;
for (j = i+1; j < maxsize; j++)
{
if (elements[j] < elements[min])
min = j;
}
temp = elements;
elements = elements[min];
elements[min] = temp;
}
IN order to get more back links in bing. bing prefer quality to quantity and that "Backlinks should be relevant to the page being linked to or relevant to your domain if being linked to the homepage." Within the webmaster tools, they rate your backlinks from one to five in a little green bar - the higher the green bar the higher the quality of the link in Bing's eyes. However they don't actually say whether these backlinks should be anchored or not. But all the evidence is that Bing is very keen on anchored backlinks.
Alexa toolbar is not working as spyware , it is not keeping an eye on visitor .it maintains history of visited webpage urls.if you visits a website more then one in a day then it will count only once.
HTML validation should be follow.
As with all languages, there is a proper way to use it and an improper way to use it. Valid HTML is HTML that has been written in accordance with W3C and uses the correct syntax.Valid code is displayed properly and uniformly across popular browsers. Valid code is what search engines understand and will assist with SEO.Search engines read text only. When you provide an engine with invalidated HTML you loose whatever text was inside the invalid tag.
You can directly write html code in a jsp file.JSP out object is use for that purpose .
out.println("<html>");
out.println("<body><p>");
out.println("</p></body>");
out.println("</html>");
To use xml file as a datasource.
1>first create the xml file.
2>Drag and drop XMLDataSource Control to the page from the Toolbox's Data tab.
3>Specify the DataFile property to the Xml file.
4>Now you can use navigation controls like Treeview , Menu control for displaying xml contents.
5>Set DataSourceID property of navigation control to xmldatasource name.
like DataSourceID="XmlDataSource1"
To insert DatePicker in aspx page use following code.
<asp:ScriptManager></asp:ScriptManager>
<ajaxToolkit:Calendar runat="server"
TargetControlID="Date1"
CssClass="ClassName"
Format="MMMM d, yyyy"
PopupButtonID="Image1" />
Here TargetControlId is the textbox name where you would like to inset date.
In Asp.Net controls which takes only string(text) input like TextBox, ListBox, Label so whenever we need to assign input to these controls we have to first conevrt the object value to string using ToString() function.
or if we assigning value to a string variable we use ToString() function.
PostBackUrl property of linkbutton contains the address of webpage where we are going to post our form controls data.
i.e:-
linkbutton1.PostBackUrl="~/form1.aspx/";
Here in above statement we will reach at form1.aspx along data of form controls at the time of click on linkbutton1.