Jump to content

vadder85

Members
  • Posts

    48
  • Joined

  • Last visited

Everything posted by vadder85

  1. Here is the example..hope you can help me
  2. actually it happened when I drag the AccessDataSource/SqlDataSource/wat ever data source( in mobile web form menu) into List..An alert window will appear with those message that I've mentioned above..or do you know wat is the right way to display data from database in List..(but in mobile web form not normal web form)..tq
  3. hi..hope anyone can help me solve this problem I'm quite new in this area..got problem when trying to connect to database as I would like to retrieve all the info in the database into my mobile web pages... While I'm trying, an error message came out "non mobile control are permitted inside the templates.Please delete this control or move it into the template"...where's actually the template?and is the way to connect to database from mobile web pages and normal web pages same?..can some one help me..tq~~
  4. By the way, how can I know that my pages are suitable for PDA resolution?
  5. So, in your opinion, should I used ASP.NET only instead of ASP.NET mobile because I only want to create web application that can be viewed by PDA..???
  6. Hi,What's the difference between ASP.NET vs ASP.NET mobile???Why should i go for ASP>NET mobile if i would like to build a mobile web application that can be viewd by PDA or Pocket PC?Any one please help me..TQ
  7. HEllo everyone,is there anyone know how i can get the latest version of Mobile Controls or MMIT in the net? or is it still being used in the .net?quite hard to download the MMIT..maybe you know better than me..Tq
  8. vadder85

    sum integers

    hellohope anyone can help mebelow are my coding<%meal = request("meal")acm = request("accomodation")total_cost = meal + acm%>let say meal = 1 and acm = 1suppose the answer will be 2 rite after we add both integers BUT what i got isoutput = 11so how to solve this problem?any one know?tq..
  9. vadder85

    checkbox

    anyone know how to do it in asp?
  10. vadder85

    checkbox

    i have one problem here...hope someone can help me..below is my checkbox code<input type="checkbox" name="checkbox1 value="1">so my question is,how could i modify my coding to make it return value 1 into my database if it is checked and return 0 if it is unchecked..tq...
  11. vadder85

    marquee

    well tq so much..that's what i really want.....hope you can help me again in the future..tq...
  12. vadder85

    marquee

    Does anyone knows how to change some code above to make it display the all the information line by line...i mean,not in a full sentence..1st information2nd information3rd informationtq
  13. vadder85

    marquee in asp

    Does anyone knows how to change some code above to make it display the all the information line by line...i mean,not in a full sentence..1st information2nd information3rd informationtq
  14. vadder85

    marquee

    Hello,hope somebody will help me on this matterStr_Scroll = Str_Scroll & " .:::. " & rs.fields(0)rs.movenextloop -----------------------------output-----------------------------------------------------------.:::.1st annoucement.:::.2nd annoucement.:::.3rd annoucement.:::.i just have one question..how could i display all the annoucement in this type of movement by using marquee????----------------this is what i want--------------------------------------------------------------1st annoucement---2nd annoucement---3rd annoucementactually i,ve tried but box that contains the annoucement keep repeating according to amount of message...if i have 3 messages then i would get 3 boxes...this is what i did not want..i want only one box to display al those three annoucemen..hope you can understand..tq..
  15. vadder85

    marquee in asp

    Hello,hope somebody will help me on this matter<% Dim Str_Scroll sql= "select " &_ "information as info " &_ "from " &_ "announcement " Set rs=conn.Execute(sql) Do While NOT rs.EOF Str_Scroll = Str_Scroll & " .:::. " & rs.fields(0) rs.movenext loop %><td><%=Str_Scroll%> </td>-----------------------------output-----------------------------------------------------------.:::.1st annoucement.:::.2nd annoucement.:::.3rd annoucement.:::.i just have one question..how could i display all the annoucement in this type of movement by using marquee????---1st annoucement---2nd annoucement---3rd annoucementactually i,ve tried but box that contains the annoucement keep repeating according to amount of message...if i have 3 messages then i would get 3 boxes...this is what i did not want..i want only one box to display al those three annoucemen..hope you can understand..tq..
  16. vadder85

    error checking

    i have another problem...let say my code...if staff_no="46" then 'here i want the coding to do nothingelse'below here are my sql statement------------------------------------------this is just exceptional statement..but i don't know the right coding..can someone give the coding for statement 'here i want the coding to do nothing means the program will have to do nothing if the staff_no equal to 46tq....
  17. vadder85

    error checking

    hey,tq 4 da solution..i managed to display the error message according to my requirement..tq again..
  18. vadder85

    error checking

    i have made one code regarding this problem...please help by correcting this code..this actually what i want..but i'm not sure whether the coding is correct or notcheck this.. <% if ("supervisor_no"=is null) then response.write("Error") end if %>all solution form our friend is actually not what i mean..what i mean here is actually in table staff there are other column too..so by giving rs.EOF it will check all the column and data...that is what i did not neednow what i need is that the" if statement" will only check supervisor_no column whether the data is empty or not..if yes,just display error message..that's all i want...this is because,in the supervisor_no column, there are some empty data as the user will be notify by error message to update their supervisor no if the data is empty..i hope everybody can understand..sorry for the bad language..tq...
  19. vadder85

    error checking

    the problem is some "staff_no" may don't have "supervisor_no"...so, how could i display an Error message to the user if the data in "supervisor_no" is empty..is it enough by just using rs.EOF ?or asp have other way?
  20. vadder85

    error checking

    Hello..hope someone can help me..I want to make an error checking that can give output "Error" if there are no data in sv_no...Below are my asp code: staffnumber=Session("staffno") set conn = server.CreateObject ("ADODB.Connection") conn.Open GetConnectString sql="select supervisor_no as sv_no "&_ "from staff "&_ "where staff_no='" & staffnumber & "'" Set rs=conn.Execute(sql)-------------------------------------------------------------------------------------------- if rs.EOF then <script language="JavaScript" type="text/JavaScript"> window.alert("Error") </script> end if--------------------------------------------------------------------------------------------tq...may god bless u
  21. hey dude..thanks...i've tried the coding and managed to display all the information as required..tq 4 ur help
  22. vadder85

    marquee using asp

    i have one problem here...hope someone can help me..i want to display all my data from the database using asp and make it work in marquee...but the problem is the information is displayed separately rather than displayed continuously or in other word append to each data..below are the example...WHAT I WANT...info1....info2....info3....info4.....info5..... NOT LIKE THIS...info1....info2....info3....info4....info5...hope someone will help me...tq so much
  23. can somebody help me..since i'm quite new in this area, i need some assistant..how can i put a form (action) inside another form(action) in the same HTML page?i've tried but it seems the HTML get confused with the two forms or actionscan somebody show me the correct way to solve this problem..and if posibble give me simple example for that matter..tq very much
×
×
  • Create New...