Click here to Skip to main content
15,891,910 members

Videos


Page 4 of 7
1 2 3 4 5 6 7


61. Setup and Deployment
guess you would get your answer in the below linkshttp://msdn.microsoft.com/en-us/library/ay12wede(v=vs.80).aspx[^]http://msdn.microsoft.com/en-us/library/vstudio/206sadcd(v=vs.100).aspx[^]
Programming Languages » Visual Basic »
joe_j Updated: 1 Feb 2013
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
62. Merge/Split GridView header using CSS and code
Shows how to split a GridView header using CSS and code.
Programming Languages » Visual Basic »
joe_j Updated: 30 Jan 2013
Rating: 5.00/5 ( (2 votes))
63. Register/Login in Asp.net
How about mix them both.I use the Login Control to check against Active Directory and then use custom code to check in my database to find out if user is admin, guest, or user.Try the below link to understand the ASP.NET Login...
Web Development » ASP.NET »
joe_j Updated: 30 Jan 2013
Rating: 4.00/5 ( (1 vote))
64. Gridview row editing help
Guess you can try something like the belowProtected Sub GV1_RowUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewUpdateEventArgs) Handles GridView1.RowUpdating Dim rw As GridViewRow = DirectCast(GV1.Rows(e.RowIndex), GridViewRow)End Sub
Web Development » ASP.NET »
joe_j Updated: 29 Jan 2013
Rating: 1.00/5 ( (1 vote))
65. How Can i disable first item of my dropdown list in ASP.NET?
The exact answer that you need is in the below linkhow to avoid 'please select' in dropdown list to consider as data?[^]
Web Development » ASP.NET »
joe_j Updated: 28 Jan 2013
Rating: ( (No votes))
66. person username and password should be maintain in session for all the pages,
If you would want to just store the login name in the session then do the belowSession("username") = Login1.UserNameif you would want to check the login name against a databaseDrag a drop a Login control onto the pageProtected Sub Page_Load(ByVal sender As Object, ByVal e As...
Web Development » ASP.NET »
joe_j Updated: 24 Jan 2013
Rating: ( (No votes))
67. chat call from one pc to another in a LAN
try these link, you would get some idea and something to start withExamples to create your Conferencing System in .NET, C# VOIP & Video Conferencing Systems using H.323 and TAPI 3http://www.asterisk.org/community/developers[^]
Database Development » SQL Server »
joe_j Updated: 24 Jan 2013
Rating: 3.00/5 ( (1 vote))
68. VB and C# tutorials for beginners
try these links, could be of help, or google it and you would get a lot of results.http://www.homeandlearn.co.uk/net/vbnet.html[^]http://howtostartprogramming.com/vb-net/[^]
Programming Languages » C# 4.0 »
joe_j Updated: 24 Jan 2013
Rating: 4.00/5 ( (2 votes))
69. How to generate report in excel?
If you do not have excel on the server, then try the below linkSQL table data to Excel and open Excel on client side[^]
Web Development » ASP.NET »
joe_j Updated: 22 Jan 2013
Rating: ( (No votes))
.

()
» »
Updated:
Rating: ()
70. How to fit iframe width to fit browser window.
try the below link. it shows a simple jquery that you can copy and pasteand it would resize the iframe.http://webdevrefinery.com/forums/topic/8300-dynamically-resizing-an-iframe-to-fit-within-the-browser-window/[^]
Web Development » CSS »
joe_j Updated: 21 Jan 2013
Rating: ( (No votes))
71. css Override JavaScript
Can you try replacing your code line with the below and see if it worksdocument.body.style.backgroundColor = document.getElementById('HiddenField1').value;if that doesnt work, then try using jquery like the sample below$('body').css('background', '#ccc');
Web Development » CSS »
joe_j Updated: 21 Jan 2013
Rating: 5.00/5 ( (1 vote))
72. How to dawnload data to excel seet in aso.net
Try the below link, shows you a simply way to export SQL data into excel.SQL table data to Excel and open Excel on client side[^]
Web Development » ASP.NET »
joe_j Updated: 21 Jan 2013
Rating: ( (No votes))
73. How to create log file for sending email.
You can either use a txt file and keep adding the time the mail was sent, the email id that it was sent to etc.or you can use an XML file, but i guess the best way would be to keep appending the new data into a txt file.If you are using a website, then create the file in your Server.
Web Development » ASP.NET »
joe_j Updated: 21 Jan 2013
Rating: ( (No votes))
74. SQL table data to Excel and open Excel on client side
Export SQL table data into Excel and open the excel file on the client side.
Web Development » ASP.NET »
joe_j Updated: 18 Jan 2013
Rating: 5.00/5 ( (1 vote))
75. How to Calculate 2 Table Amount and Display to DataGridView
I'm not sure if I got your question right, I guess the way you should do it as belowTbl_1abcTbl_2defand if you want data that is common in column a and d (in your case class and regno) then you do the belowSELECT tbl_1.a,tbl_1.b,tbl_1.c FROM tbl_1 INNER JOIN tbl_2 on...
Programming Languages » Visual Basic »
joe_j Updated: 18 Jan 2013
Rating: ( (No votes))

Page 4 of 7
1 2 3 4 5 6 7