configure .net settings on ur server u need to enable it first using the account provided to u by ur hosting service provider
Regards, Rashida Jabeen http://www.akaas.net[^]
configure .net settings on ur server u need to enable it first using the account provided to u by ur hosting service provider
Regards, Rashida Jabeen http://www.akaas.net[^]
on next button click event use: Response.Redirect("NewForm.aspx");
Regards, Rashida Jabeen http://www.akaas.net[^]
Sppose ur cell name is like tdCell1 then use its property title like: tbCell1.Title = "------";
Regards, Rashida Jabeen http://www.akaas.net[^]
The four top most common Web or HTTP server programs are: Apache HTTP Server from the Apache Software Foundation. Internet Information Services (IIS) from Microsoft. Sun Java System Web Server from Sun Microsystems, formerly Sun ONE Web Server, iPlanet Web Server, and Netscape Enterprise Server. Zeus Web Server from Zeus Technology.
Regards, Rashida Jabeen http://www.akaas.net[^]
On ur webspace where u are uploadiong the site check that ur hosting service providers have enabled asp.net for ur website or not if not then change ur web hosting settings and enable it
Regards, Rashida Jabeen http://www.akaas.net[^]
use this: Page.RegisterStartupScript("MyScript(any script name)", "alert('Message...');"
Regards, Rashida Jabeen http://www.akaas.net[^]
its working fine at my side i m using it in a code class file (i.e. a data access class) not code behind file and it is working
Regards, Rashida Jabeen http://www.akaas.net[^]
check that what is the value of i? coz i's value shd be the name of column in the datasource whose value will be set in the bound column why dont u try using a template column and sets the value in that columns coz bound column always requires a column name in the DataField here in ur code i seems to be an index
Regards, Rashida Jabeen http://www.akaas.net[^]
view state is the property of asp.net's pages and controls which can be enabled or disabled but is enable by default. The purpose of enabling view state is to maintain the user's input on controls after the post back which was not available in ASP's post backs. In ASP when page is post back all the inputs on form are lost and we need to enter all the values or input again but its not the case with ASP.NET after the post back all the user input or values remain on the form and are not lost. Hidden field is a simple input control put is hidden. Suppose if u dont want to show user some values dat you may be using in ur client side scripting then u can store these values in hidden fields and can get using javascript
Regards, Rashida Jabeen http://www.akaas.net[^]
use using System.IO; // for C# Imports System.IO // for VB.NET and then try using Server.MapPath
Regards, Rashida Jabeen http://www.akaas.net[^]
use tree properties and methods tree.ExpandAll(); // to expand full tree tree.CollapseAll(); // to collapse full tree tree.Nodes[i].ExpandAll(); // to expand all sub nodes of i node tree.Nodes[i].CollapseAll(); // to collapse all sub nodes of i node tree.Nodes[i].Expand(); // to expand i node tree.Nodes[1].Collapse(); // to collapse i node
Regards, Rashida Jabeen http://www.akaas.net[^]
Make the functions of B page public and create the object of B in A's code file and use those functions
Regards, Rashida Jabeen http://www.akaas.net[^]
try this var DD1List = document.getElementById('DD1'); var DD2List = document.getElementById('DD2'); var index = DD1.selectedIndex; DD2.options[index].selected=true;
Regards, Rashida Jabeen http://www.akaas.net[^]
why dont u use something like this: ...="return DataValidation('Form1')"
Regards, Rashida Jabeen http://www.akaas.net[^]
u can use same < a href="mailto:................. with asp.net and asp or can use < aasp:Hyperlink NavigationUrl="mailto:.................>
Regards, Rashida Jabeen http://www.akaas.net[^]
u can use same[](mailto:................. with asp.net and asp or can use <asp:Hyperlink NavigationUrl=)
[Regards, Rashida Jabeen](mailto:................. with asp.net and asp or can use <asp:Hyperlink NavigationUrl=) http://www.akaas.net[^]
use: Request.Url.Host
Regards, Rashida Jabeen http://www.akaas.net[^]
i think my html code is not showing properly it is: function Message() { alert('Right click on link and save...'); return false; } <Download Image Here< replace < with single
Regards, Rashida Jabeen http://www.akaas.net[^]
use this: suppose ur image is at http://www.abc.com/images/my\_image.gif or C:\images\my_image.gif use a link or link button with image url like: function Message() { alert('Right click on link and save...'); return false; } Download Image Here
Regards, Rashida Jabeen http://www.akaas.net[^]
try this: supose ur control name is abc_control then window.parent.opener.document.getElementById('<% abc_control.ClientID %>');
Regards, Rashida Jabeen http://www.akaas.net[^]