No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
Re: your form action value is wrong. you can just set action ="" in form tag i hope that will solve this issue | |
Re: i saw one offer 20 usd free clicks. so want to try. but they are asking credit card info to get free credits. is that ok? | |
Re: try to add some articles in your site & submit also in various sites, that will help | |
Re: do you have master table for App_Type? if yes you may check using POS (which identifies substring). | |
Re: i think sSQL value comes empty. try to put response.write for EV & sSQL values and see # Ev = request.querystring("submit") # # if Ev = "" Then # Response.Write ("Nincs még ilyen adatbázis !!!") # Else # sSQL="SELECT SUM(Gyujtemeny) FROM tbl_" & mid(Ev,3,4) & "" # End if | |
Re: you may need give interface for users to enter table name, field names, field types etc then when they submit you need to construct SQL code like Create Table tblTest Add iIDNumber int null etc like that please refer Transact SQL for more info on create table syntax. then you … | |
Re: try following [code=asp]<td><input value="<%=(rs_accesslevel.Fields.Item("accesslevel").Value)%>" name="txtaccesslevel" type="text" id="txtaccesslevel" size="50"> <select name="accesslevel"> <% While (NOT rs_accesslevel.EOF) %> <option value="<%=(rs_accesslevel.Fields.Item("accesslevel").Value)%>" <%If (Not isNull((rs_accesslevel.Fields.Item("accesslevel").Value))) Then If (CStr(rs_accesslevel.Fields.Item("accesslevel").Value) = CStr((rs_accesslevel.Fields.Item("accesslevel").Value))) Then Response.Write("SELECTED") : Response.Write("")%> ><%=(rs_accesslevel.Fields.Item("accesslevel").Value)%></option> <% rs_accesslevel.MoveNext() Wend %> </select> <% If (rs_accesslevel.CursorType > 0) Then rs_accesslevel.MoveFirst Else rs_accesslevel.Requery End If %>[/code] | |
Re: can you check whether form tags are closed corrected or not. also can you post code here? | |
Re: change line no 71 instead of this [icode]<% =(Recordset1.Fields.Item("liked_about_session").Value)%>[/icode] use [code=asp]<% if not Recordset1.eof then response.write(Recordset1.Fields.Item("liked_about_session").Value) end if %>[/code] |
The End.