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

    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 '...
  3. 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 =...
  4. 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?
  5. 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
  6. 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
  7. 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?
  8. 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...
  9. 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
  10. 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
  11. 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.
  12. 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...
  13. B

    Orientation Changing Problem with Gridview

    Hello, I am using visual web developer 2008. I want to change the Gridview Orientation. (ie) It displays like this Username Password admin user1 But i want to change like this Username admin Password user1
  14. B

    How to get loginname Control Value

    hello, I am using Visual Web developer 2008. I am using loginname control. there it displays name as admin. How to get that value to textbox or label. Simply i want to get that value as string. Thanks
  15. B

    Customized menu displaying

    Hello, I am using visual webdeveloper 2008. I am using menu control which is binded to sitmap. I am having both menus and sub-menus. So when i click the menu, it expands submenu from the side to the menu. But I want the menu to be displayed as such in this link DaniWeb IT Discussion Community...
  16. B

    How to Use two SiteMap

    hello, I am using visual web developer 2008. Here i want to use two menu which gets data from sitemap. In First SiteMap,I am having Home,Friends,Profiles and it is showing correctly in the first Menu. But in the second SiteMap i am having Social,Contact,General and when i try to choose datas for...
  17. B

    Displaying Pages Dynamic to users

    Hello, I am using visual webdeveloper 2008, I have created users using asp.net configuration. Now i am having 2 roles admin and users, And i am having 3 pages as login,register,secured So wen i enter the website as admin all these 3 pages must be visible to the user. Wen i enter as guest it must...
  18. B

    Displaying Images in table

    Hello, I am using visual webdeveloper 2008 I am trying to display an image in a table with a master page. But my image is being displayed during designtime but not displayed during run time. I used the coding below. <form id="form1" runat="server"> <div> <table style="width...
  19. B

    Available Need Part time job???

    Hello, I need any part time job. See my Resume for my profession and details. My Resume attached:
  20. B

    Writing to database

    Hello, I am using OLEDB and using datareader and with the read function i am reading table to the form. But now i want the textbox values to be written to the table??? I tried with the fill, but not getting.
Back
Top