Forum: ASP.NET 8 Days Ago |
| Replies: 4 Views: 345 From MSDN article - http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.commandfield.causesvalidation.aspx
SUMMARY:
Use the CausesValidation property to specify whether validation... |
Forum: ASP.NET 11 Days Ago |
| Replies: 1 Views: 239 Welcome,
Use classes from ADO.NET (http://msdn.microsoft.com/en-us/library/h43ks021(VS.71).aspx) to execute stored-procedures. Take at look at this link -... |
Forum: ASP.NET 21 Days Ago |
| Replies: 3 Views: 353 Show us your code work please. You will find some useful information from this MSDN page - http://msdn.microsoft.com/en-us/library/aa479339.aspx |
Forum: ASP.NET Oct 9th, 2009 |
| Replies: 2 Views: 558 Yes, there are number of ways.
Take a look at this tutorial - http://livedocs.adobe.com/flashremoting/mx/Using_Flash_Remoting_MX/usingFRNET3.htm and a very good book Two-way ASP.NET/Flash... |
Forum: ASP.NET Oct 1st, 2009 |
| Replies: 4 Views: 571 It's a sticky footer.
<html>
<head>
<style>
* {margin: 0; padding: 0}
html, body, #wrap {height: 100%}
body > #wrap {height: auto; min-height: 100%}
#main... |
Forum: ASP.NET Sep 2nd, 2009 |
| Replies: 2 Views: 361 I think website design is an art and to be a good website designer, one must have know-how of css, html, and javascript. |
Forum: ASP.NET Aug 1st, 2009 |
| Replies: 2 Views: 554 ishamputra,
String ext=System.IO.Path.GetExtension(FileUpload1.FileName).ToUpper();
if(ext==".TXT")
{
String content=System.Text.Encoding.ASCII.GetString(FileUpload1.FileBytes)
... |
Forum: ASP.NET Jul 20th, 2009 |
| Replies: 9 Views: 761 Try this code:
Dim Cn as new OledbConnection(".....")
Dim Cmd as New OledbCommand("select eno from emp where eno='" & txtEno.Text & "'",cn)
Cn.Open()
Dim obj as Object... |
Forum: ASP.NET Jun 19th, 2009 |
| Replies: 4 Views: 644 Some confusion:
1. Do now show the data when user leave textbox empty and click
on button.
For this case, do not execute you code - use if statement to
check the value of textbox.... |
Forum: ASP.NET May 29th, 2009 |
| Replies: 4 Views: 446 Changes in Stylesheet1.css:
....
a.nav, a.nav:link, a.nav:visited {display:inline-block; width:140px; height:25px; background:#dca; border:1px solid #000;
margin-top:2px; text-align:center;... |
Forum: ASP.NET May 29th, 2009 |
| Replies: 3 Views: 1,147 <div style="overflow:scroll;width:100px; height:100px">
<img src="images/a1.jpg"/>
</div> |