Search results for query: *

  1. B

    GridView Update Problem

    Hello, I am using GridViewand bounding values from 2 tables. tbl_login and tbl_register. In tbl_register Table the Field is UserName In tbl_login Table the Field is Active(yes/no field) I used this command to show the fields into the gridview. SELECT tbl_createuser.UserName...
  2. B

    Date displays DateTime

    Dim temp_date As New DateTime() temp_date = DateTime.Now.Date This displays a date along with the correct time.
  3. B

    how to save to a database?

    Encrypting and Decrypting Text, Saving and retrieving it from Database, Full Working Coding Imports System.Security.Cryptography Imports System.IO Imports System.Data.OleDb Partial Class _Default Inherits System.Web.UI.Page Private conn_str As String =...
  4. B

    how to save to a database?

    Hi used the below coding for enrypting and decrypting a text. But with this i dont know how to save to a database, when i tried i am getting many errors. How to do this? Private Sub cmdEncrypt_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click '...
  5. B

    Changing c# to vb.net coding

    Thanks the issue was solved
  6. B

    Changing c# to vb.net coding

    Hello sir, how to change this coding to vb.net coding? Stream photoStream = PhotoUpload.PostedFile.InputStream; int photoLength = PhotoUpload.PostedFile.ContentLength; string photoMime = PhotoUpload.PostedFile.ContentType; string photoName =...
  7. B

    Database Desing for Tracking Attendance

    Hello sir, I am creating student attendance tracking system in asp.net. With attendance i need to track students attendance every day and want to generate charts with those data. Charts for Daily Attendance report, Weekly Report, and monthly Report. For this how to design database in msaccess?
  8. B

    Datalist Selection Problem

    Hello sir, In Datalist, the datas are bounded from Accessdatasource. Accessdatasource contains StudentName field only. I create itemtemplate field with checkbox. Now When i click a button, the StudentName must be written for the checked one's from the checkboxes? Thankyou
  9. B

    How to get full path in Fileupload control?

    Hello, How to get the full path from fileupload control browsing the path to it? I want to get as this. c:\Images\mine.jpg I used this coding but this is working only in internet explorer, but not in mozilla, opera etc. lbltext.Text = FileUpload1.PostedFile.FileName
  10. B

    Showing Table on mouse over

    Hello, How to show a table on mouse over an hyperlink in asp.net? Initially while page loads the table must be hidden, and when on mouse over it must be seen?
  11. B

    Loading Image from database

    Hello, I used the below coding to store an image into the database. 1. lblImagePath.Text = ImageUpload.PostedFile.FileName 2. ImageUpload.PostedFile.SaveAs(lblImagePath.Text) 3. Dim mbytes() As Byte = System.IO.File.ReadAllBytes(lblImagePath.Text) 4. Dim cn As...
  12. B

    Dropdownlsit Problem

    Hello sir, I am using 2 dropdownlist on my page. Those 2 are bounded to AccessDataSource. Initially dropdownlist2 is hidden. Wen i select some values on dropdownlist1, the other must be visible. Thankyou
  13. B

    Available Need Part time job???

    Hello sir Hello, Thankyou for the reply. And i am very much interested in working as .NET programmer and would like to take up the interview. Thankyou Phone number removed, send it to them in a PM or email instead.
  14. B

    Adding Captcha to CreateUserWizard

    Hello, I am using Visual Web Developer 2008. I added CreateUserWizard on the form. In the CreateUserWizard Control, I want to add Captcha Control. And how can i do this? Thankyou
  15. B

    Hosting Error

    Hello, I had uploaded my website to www.x10filehosting.com. When i try to open my website i am getting this error.
  16. B

    Question Do you know any free webhosts supporting ASP.NET?

    www.x10filehosting.com Free ASP.NET 3.5 3.0 2.0 web hosting with SQL Server 2008 express
  17. B

    Probem with Checking the database

    this worked for me Dim cmd As New OleDbCommand("select * from login where id= '"+txtUser.Text+"' and pass='"+txtPwd.Text+"'", conn) dr = cmd.ExecuteReader if(dr.HasRows) Form2.Show() Else txtUser.Clear() txtPwd.Clear()...
  18. B

    Probem with Checking the database

    ya when i use while also the same error
  19. B

    Removing Menu Item

    Hello, I am using Visual Web Developer 2008. I am using menu control binded to site map. So when the user role is administrator, i want to remove the menu item from the menu. I used the coding but not working. If page.user.isinrole("Administrator") then...
  20. B

    How to get loginname Control Value

    hi i solved the issue Dim getname As String = Page.User.Identity.Name TextBox1.Text = getname
Back
Top