Hi,
I have a FORM which has a Input text box in a FOR loop .
<form name="form1" method="POST" Action="sasd.asp" onSubmit="return validate();">
<%
for(i=0;i <3;i++)
{
%>
<input width="150" Type="text" name="NM">
<%
}...
The reason i use * is the table has around 80 columns .out of which 50 columns are full text enabled . so inorder to validate all the 50 columns i use '*' rather than mentioning each column with a 'or' clause.
...statement where i have more than one table to join as below.
FULL TEXT IS ENABLED ON TABLE emp
This works.
select s.id from emp s
WHERE CONTAINS(*, '"test"')
This does not work
select s.id from emp s,emp1 s1
WHERE CONTAINS(*, '"test"')
and s.id=s1.id
I know the problem is * . But not...
Hi All,I do have this code in Classic ASP .I'm newbie to ASP.NET . Can anyone please let me know how to use this code in ASP.NET (VB or C#)
<%
var url="http://xyz/defs.aspx";
var xhttp = Server.CreateObject("MSXML2.ServerXMLHTTP");
xhttp.open("POST", url, false, "", "")...
Hi,
I was wondering if there is a way to save the values selected by the user from a search form . By default i get the first page results from the database . When the user clicks the Next page ,i get from the database the results for the 2nd page and so on. I'm wondering what would be the...
Thanks for the tip. The only reason i had the div tag in the first place was i needed to show a scroll bar for the contents of the page (since there is a Frame(Header) above that and dont want the header to scroll when the user uses IE Scroll bar) . If i can get the scroll bar anyother way and...
Hi,I have a div tag as follows.
<DIV STYLE="Left:0px;Top: 110px;Position: absolute;Width: 830;HEIGHT: 500px;overflow: auto">
All the contents of the page are inside this div tag. when when i try to use window.print() ; javascript function only the content on the screen or being printed and not...
Please do bear with me,I'm new to ASP.NET .I was wondering if there is a way in ASP.NET to convert an image loaded by the user into base64 format . I dont want to upload on the server . All i want to do is convert into binary stream with base64 format .
Thanks!!!!!!!!
I have an ASP Page called test.asp which has the following code
<FORM name="myform">
<SELECT name="myselect" ONCHANGE="location = this.options[this.selectedIndex].value;">
<OPTION VALUE="test.asp" >ABC</OPTION>
<OPTION VALUE="test.asp?t=a">A</OPTION>
<OPTION VALUE="test.asp?t=b">B</OPTION>...
I have an ASP Page called test.asp which has the following code
<FORM name="myform">
<SELECT name="myselect" ONCHANGE="location = this.options[this.selectedIndex].value;">
<OPTION VALUE="test.asp" >ABC</OPTION>
<OPTION VALUE="test.asp?t=a">A</OPTION>
<OPTION VALUE="test.asp?t=b">B</OPTION>...
I was wondering if there is any function in ASP/JAVA SCRIPT to read an image that the user is trying to upload to convert into binary stream . I dont want to save the image on disk the usee is trying to upload. All i would like to do is read that image as binary stream and pass it on to the...
I was wondering if there is a function or method to Brighten an Image on Load(or Onclick) . The reason i need is i have an image gallery which lists all the images in smaller size on the left side of the webpage . when the user clicks on the smaller size image on left frame , it shows on the...
I did re-create a new file extension exe type and re-associated with Application . This made all the exe's work . So the problem seem to be partialy resolved . I'm going to do all the virus scan's mentioned by bcastner . Thanks bcastner/linney .
HKEY CLASSES ROOT\.exe has default .exefile
but there was a also a key for contenttype which had the value of application/x-msdownload . There was a subbranch called PersistentHandler which i deleted .
Also i didnt get an option of "open with" for exe files .
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.