Search results for query: *

  1. vks.gautam1

    required field validator and drop down list problem

    2) i have got the solution for it..as it was adding same data on every auto post back event an creating duplicate values... now i have put a if condition on this... haven't successive on first one.
  2. vks.gautam1

    how to dynamically load the aspx page when u click a button control

    in your button click code Response.redirect(default.aspx)
  3. vks.gautam1

    required field validator and drop down list problem

    1) required field validator-- Im using this control on my page to submit data & no textbox should be blank..It's working.. But the problem is now that when i want to "search" a content and it needs only one textbox field to be filled but now it's gives message not to keep blank other text...
  4. vks.gautam1

    Question how to populate otherfield using select one items in comboBox

    use "select " statement with "where" case.. add data to text box or whereever u want
  5. vks.gautam1

    how to get the last Value of a field from MySQL to VB textbox

    Abt Last record it depends upon your table structure.. " Select * from table order by field1 " abt text box ..after retrieving data use data reader to read value and insert in text box.. TextBox1.Text=DataReader1.Item(0)
  6. vks.gautam1

    Question Ms access query

    well both tables have different type of data in " Name " field
  7. vks.gautam1

    Question Ms access query

    I have two tables. A) Test1 B) USSD_MASTER Field in Test1 a) Mob b) Name Field in USSD_MASTER a) Mob b) date c) Name Test1 table have unique values. But USSD_MASTER table have many duplicate values.. now when i am making queries it is giving many duplicate values. " select distinct...
  8. vks.gautam1

    Crystal Report 11...how to?

    Well i downloaded crystal report separately fron vb.net. well now i am right clicking on my project & not getting option of crystal report to add in project
  9. vks.gautam1

    Import data from Text file to Msaccess Database

    I tried & getting the error of " an oledbparameter with parameter name"dat" is not contained by oledbParameterCollection. q = "insert into TAB1 values(Dat,SNo,MobNo)" cn = New OleDbConnection("provider=microsoft.jet.oledb.4.0;data source=E:\1.mdb;") cn.Open()...
  10. vks.gautam1

    Import data from Text file to Msaccess Database

    Imports System.IO i used it. Now it is giving error on cmd.Parameters("@date").Value = DateTime.ParseExact(spl(0), "dd-mmm-yy", CultureInfo.CurrentCulture) Culturinfo = Name 'Culturinfo' is not declared. Now wt should i import ?
  11. vks.gautam1

    Import data from Text file to Msaccess Database

    For Each line As String In File.ReadAllLines(file_Path) It giving error = File is not declared
  12. vks.gautam1

    Import data from Text file to Msaccess Database

    i will let u know abt my work on your advise day after tomarrow. Thanks for your advise.
  13. vks.gautam1

    Background Image in ASP.NET

    I have already tried this . picture is showing on the page <body Background="Images/One.jpg" > But I am getting this message on source code . Background is underlined. message " Attribute "Background" is cosidered outdated & new contructor is recommanded. Is this ok to work with this.
  14. vks.gautam1

    Background Image in ASP.NET

    in HTML there is Background in body tag to set picture in entire body of Document. <body background=.........> Now how can do i this in ASP.NET 2
  15. vks.gautam1

    Data saved in database through oledbcommand problem

    i get it . Changed the UserName=User_Name Password=Psw Fieldnames of database & parameter names. :) Thanks
  16. vks.gautam1

    Question Reterieve data from mdb and display in listbox

    cmd = New OleDbCommand("SELECT * from UMP WHERE ", cn) where is the parameter to search the value in database like cmd = New OleDbCommand("SELECT * from UMP WHERE columnName=@value ", cn) with cmd.parameters .add("@value",oledb data type).value=me.control Name ' Textbox Name if u putting...
  17. vks.gautam1

    Data saved in database through oledbcommand problem

    Userinfo =Table Name i used select command cmd = New OleDbCommand("select username,password from userinfo where username=@username and password=@password", cn) in the other Page.. It works. I do not know which is reserved word in Insert query. This all is in ASP.NET
  18. vks.gautam1

    Data saved in database through oledbcommand problem

    cmd = New OleDbCommand("insert into userinfo(FirstName,LastName,UserName,Password,SequrityQuestion,Answer,Address) values(@FirstName,@LastName,@username,@password,@SequrityQuestion,@Answer,@Address)", cn) With cmd.Parameters .Add("@FirstName", OleDbType.VarChar).Value...
  19. vks.gautam1

    Import data from Text file to Msaccess Database

    i Have no idea. wt should i do for this.
Back
Top