User Profile
Collapse
-
hi dude have a look at this link http://support.microso ft.com/kb/275312... -
Dude have a look at the below link
http://www.codeproject .com/aspnet/ClientServer.as pLeave a comment:
-
try using the Title attribute with datagrid item template column
use the title as
<colunmn >
<asp:template column>
<item template>
<label Title='<%#DataB inder.Eval(Cont ainer.DataItem, "ColumnName")%> '>
<%#DataBinder.E val(Container.D ataItem,"Column Name")%>
</label>
</item template>
</asp:template column>...Leave a comment:
-
in VS2005 we have flow layout not the grid layout , that mean you can not past the control at any place you feel like.
Go for using html table format to position the contol on the pageLeave a comment:
-
try this on page load
onload="javascr ipt:document.Fo rmName.txtBoxId .focus();"Leave a comment:
-
its very simply , just use a client side script that mask over the key press
have a look
function maskNumeric(evt )
{
var charCode = (evt.which) ? evt.which : event.keyCode
if ((charCode < 48 || charCode > 57) )
return false;
return true;
}
no call this function on click event
like
onKeyPress="ret urn validTaskCode(e vent)"Leave a comment:
-
r u looking for incremental search teachinique, in which search is made at the client end only,then have a look at below link , and get some idea to implement it
Check out this site for more information
in case you are looking for search through DB then
use the 'like' clause in the SQL query you send from front end to back end!Leave a comment:
-
-
please check whether the code of insert detail is present in page load or not!
in case if it is, then please use
if (!Page.isPostba ck)
{
//insert related command
}Leave a comment:
-
use this syntax
<img src="/images/ad.gif" >
i.e. a root relative path, instead of 'document relative' or 'absolute path'Leave a comment:
-
have a look over this link
http://www.codeproject .com/aspnet/ClientServer.as pLeave a comment:
-
The suggestion is good, however please note creating a session or cookie require utilization of resource at client end, beside this making severe use of session variable is not a good practice.
In case if user wishes to create a session/cookie then please do abandon the session/delete the cookie once its use is over....Leave a comment:
-
-
try using the hidden control, declare a html contol of type hidden, then set its value on the Form2 , when you reopen the form 1 you can get the value using Requets("hdnCon trolName");Leave a comment:
-
try debugging the value which is being send to SP. It appear that datatype is mismatching as a result the where condition is not showing a result , which in turn is null.Leave a comment:
-
Abdul Haque replied to Get the value of a variable through window.opener not work in IE (OK for FF, opera)in JavascriptTry using window.opener.d ocument.getElem entById("abcd") .value
where abcd is the name of element of the parent windowLeave a comment:
No activity results to display
Show More
Leave a comment: