473,795 Members | 2,805 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

indexing service

ash
i'm using the indexing service and CreateRecordSet ("nonsequential ") in asp.......and i cant retrieve the record although the keywords is matched. Does anybody know how to solve it?

thx
Sep 29 '06 #1
8 2417
need to see code
"ash" <as*@gmail.comw rote in message news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
i'm using the indexing service and CreateRecordSet ("nonsequential ") in asp.......and i cant retrieve the record although the keywords is matched. Does anybody know how to solve it?

thx
Sep 29 '06 #2
ash
<html>
<%
' This section sets the various configuration variables

formscope="/"
pagesize = 5000
maxrecords=5000
searchstring=re quest.form("sea rchstring")
catalogtosearch ="web"
searchrankorder ="rank[d]"
origsearch=sear chstring
%>

<%
'This section performs the query

dim q
dim util
set q=server.create object("ixsso.q uery")
set util=server.cre ateobject("ixss o.util")
q.query=searchs tring
q.catalog=catal ogtosearch
q.sortby=search rankorder
q.columns="doct itle, filename, size, write, rank, directory, path"
q.maxrecords=ma xrecords
%>

<%
'This section displays the results

set rs=q.createreco rdset("nonseque ntial")
rs.pagesize=pag esize
response.write" <p>Your search for <b>" & origsearch & "</bproduced "

if rs.recordcount= 0 then response.write "no results"
if rs.recordcount= 1 then response.write "1 result: "
if rs.recordcount> 1 then response.write( rs.recordcount) & " results: "

%>

<table border=1><tr><t d><b>Title</b></td><td><b>Filen ame</b></td><td><b>Date / Time</b></td><td><b>Size</b></td><td><b>Relev ance</b></td><td><b>Direc tory</b></td></tr>

<%
do while not rs.EOF

response.write "<tr><td>" & rs("doctitle") & "</td><td>" & "<a href=" & "'" & rs("path") & "'" & ">" & rs("filename") & "</a>" & "</td><td>" & rs("write") & "</td><td>" & rs("size") & "</td><td>" & rs("rank") & "</td><td>" & rs("directory" ) & "</td></tr>"

rs.movenext
loop

response.write "</table>"
set rs=nothing
set q=nothing
set util=nothing
%>

</body>
</html>

"Alan M" <me@work.com¦b¶ l¥ó news:em******** ******@TK2MSFTN GP06.phx.gbl ¤¤¼¶¼g...
need to see code
"ash" <as*@gmail.comw rote in message news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
i'm using the indexing service and CreateRecordSet ("nonsequential ") in asp.......and i cant retrieve the record although the keywords is matched. Does anybody know how to solve it?

thx
Sep 29 '06 #3
Your search string needs to have the correct syntax.

searchstring = "$CONTENTS "& searchstring

see below

"ash" <as*@gmail.comw rote in message news:uA******** *****@TK2MSFTNG P06.phx.gbl...
<html>
<%
' This section sets the various configuration variables

formscope="/"
pagesize = 5000
maxrecords=5000
searchstring=re quest.form("sea rchstring")
catalogtosearch ="web"
searchrankorder ="rank[d]"
origsearch=sear chstring

searchstring = "$CONTENTS "& searchstring

%>

<%
'This section performs the query

dim q
dim util
set q=server.create object("ixsso.q uery")
set util=server.cre ateobject("ixss o.util")
q.query=searchs tring
q.catalog=catal ogtosearch
q.sortby=search rankorder
q.columns="doct itle, filename, size, write, rank, directory, path"
q.maxrecords=ma xrecords
%>

<%
'This section displays the results

set rs=q.createreco rdset("nonseque ntial")
rs.pagesize=pag esize
response.write" <p>Your search for <b>" & origsearch & "</bproduced "

if rs.recordcount= 0 then response.write "no results"
if rs.recordcount= 1 then response.write "1 result: "
if rs.recordcount> 1 then response.write( rs.recordcount) & " results: "

%>

<table border=1><tr><t d><b>Title</b></td><td><b>Filen ame</b></td><td><b>Date / Time</b></td><td><b>Size</b></td><td><b>Relev ance</b></td><td><b>Direc tory</b></td></tr>

<%
do while not rs.EOF

response.write "<tr><td>" & rs("doctitle") & "</td><td>" & "<a href=" & "'" & rs("path") & "'" & ">" & rs("filename") & "</a>" & "</td><td>" & rs("write") & "</td><td>" & rs("size") & "</td><td>" & rs("rank") & "</td><td>" & rs("directory" ) & "</td></tr>"

rs.movenext
loop

response.write "</table>"
set rs=nothing
set q=nothing
set util=nothing
%>

</body>
</html>

"Alan M" <me@work.com¦b¶ l¥ó news:em******** ******@TK2MSFTN GP06.phx.gbl ¤¤¼¶¼g...
need to see code
"ash" <as*@gmail.comw rote in message news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
i'm using the indexing service and CreateRecordSet ("nonsequential ") in asp.......and i cant retrieve the record although the keywords is matched. Does anybody know how to solve it?

thx
Sep 29 '06 #4
Also I would change path to vpath, if you want to return the http path and not the file system path
"ash" <as*@gmail.comw rote in message news:uA******** *****@TK2MSFTNG P06.phx.gbl...
<html>
<%
' This section sets the various configuration variables

formscope="/"
pagesize = 5000
maxrecords=5000
searchstring=re quest.form("sea rchstring")
catalogtosearch ="web"
searchrankorder ="rank[d]"
origsearch=sear chstring
%>

<%
'This section performs the query

dim q
dim util
set q=server.create object("ixsso.q uery")
set util=server.cre ateobject("ixss o.util")
q.query=searchs tring
q.catalog=catal ogtosearch
q.sortby=search rankorder
q.columns="doct itle, filename, size, write, rank, directory, path"
q.maxrecords=ma xrecords
%>

<%
'This section displays the results

set rs=q.createreco rdset("nonseque ntial")
rs.pagesize=pag esize
response.write" <p>Your search for <b>" & origsearch & "</bproduced "

if rs.recordcount= 0 then response.write "no results"
if rs.recordcount= 1 then response.write "1 result: "
if rs.recordcount> 1 then response.write( rs.recordcount) & " results: "

%>

<table border=1><tr><t d><b>Title</b></td><td><b>Filen ame</b></td><td><b>Date / Time</b></td><td><b>Size</b></td><td><b>Relev ance</b></td><td><b>Direc tory</b></td></tr>

<%
do while not rs.EOF

response.write "<tr><td>" & rs("doctitle") & "</td><td>" & "<a href=" & "'" & rs("path") & "'" & ">" & rs("filename") & "</a>" & "</td><td>" & rs("write") & "</td><td>" & rs("size") & "</td><td>" & rs("rank") & "</td><td>" & rs("directory" ) & "</td></tr>"

rs.movenext
loop

response.write "</table>"
set rs=nothing
set q=nothing
set util=nothing
%>

</body>
</html>

"Alan M" <me@work.com¦b¶ l¥ó news:em******** ******@TK2MSFTN GP06.phx.gbl ¤¤¼¶¼g...
need to see code
"ash" <as*@gmail.comw rote in message news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
i'm using the indexing service and CreateRecordSet ("nonsequential ") in asp.......and i cant retrieve the record although the keywords is matched. Does anybody know how to solve it?

thx
Sep 29 '06 #5
ash
I try it, but still no results is found when i use ASP, but when I search in the "informatio n form" of Indexing service, it could find some results.
Thx
"Alan M" <me@work.com¦b¶ l¥ó news:%2******** ********@TK2MSF TNGP05.phx.gbl ¤¤¼¶¼g...
Also I would change path to vpath, if you want to return the http path and not the file system path
"ash" <as*@gmail.comw rote in message news:uA******** *****@TK2MSFTNG P06.phx.gbl...
<html>
<%
' This section sets the various configuration variables

formscope="/"
pagesize = 5000
maxrecords=5000
searchstring=re quest.form("sea rchstring")
catalogtosearch ="web"
searchrankorder ="rank[d]"
origsearch=sear chstring
%>

<%
'This section performs the query

dim q
dim util
set q=server.create object("ixsso.q uery")
set util=server.cre ateobject("ixss o.util")
q.query=searchs tring
q.catalog=catal ogtosearch
q.sortby=search rankorder
q.columns="doct itle, filename, size, write, rank, directory, path"
q.maxrecords=ma xrecords
%>

<%
'This section displays the results

set rs=q.createreco rdset("nonseque ntial")
rs.pagesize=pag esize
response.write" <p>Your search for <b>" & origsearch & "</bproduced "

if rs.recordcount= 0 then response.write "no results"
if rs.recordcount= 1 then response.write "1 result: "
if rs.recordcount> 1 then response.write( rs.recordcount) & " results: "

%>

<table border=1><tr><t d><b>Title</b></td><td><b>Filen ame</b></td><td><b>Date / Time</b></td><td><b>Size</b></td><td><b>Relev ance</b></td><td><b>Direc tory</b></td></tr>

<%
do while not rs.EOF

response.write "<tr><td>" & rs("doctitle") & "</td><td>" & "<a href=" & "'" & rs("path") & "'" & ">" & rs("filename") & "</a>" & "</td><td>" & rs("write") & "</td><td>" & rs("size") & "</td><td>" & rs("rank") & "</td><td>" & rs("directory" ) & "</td></tr>"

rs.movenext
loop

response.write "</table>"
set rs=nothing
set q=nothing
set util=nothing
%>

</body>
</html>

"Alan M" <me@work.com¦b¶ l¥ó news:em******** ******@TK2MSFTN GP06.phx.gbl ¤¤¼¶¼g...
need to see code
"ash" <as*@gmail.comw rote in message news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
i'm using the indexing service and CreateRecordSet ("nonsequential ") in asp.......and i cant retrieve the record although the keywords is matched. Does anybody know how to solve it?

thx
Sep 29 '06 #6
I copied your page and added this line and it worked for me

searchstring = "$CONTENTS "& searchstring
"ash" <as*@gmail.comw rote in message
news:ua******** ******@TK2MSFTN GP06.phx.gbl...
I try it, but still no results is found when i use ASP, but when I search in
the "informatio n form" of Indexing service, it could find some results.
Thx
"Alan M" <me@work.com¦b¶ l¥ó news:%2******** ********@TK2MSF TNGP05.phx.gbl
¤¤¼¶¼g...
Also I would change path to vpath, if you want to return the http path and
not the file system path
"ash" <as*@gmail.comw rote in message
news:uA******** *****@TK2MSFTNG P06.phx.gbl...
<html>
<%
' This section sets the various configuration variables

formscope="/"
pagesize = 5000
maxrecords=5000
searchstring=re quest.form("sea rchstring")
catalogtosearch ="web"
searchrankorder ="rank[d]"
origsearch=sear chstring

****
searchstring = "$CONTENTS "& searchstring

****

%>

<%
'This section performs the query

dim q
dim util
set q=server.create object("ixsso.q uery")
set util=server.cre ateobject("ixss o.util")
q.query=searchs tring
q.catalog=catal ogtosearch
q.sortby=search rankorder
q.columns="doct itle, filename, size, write, rank, directory, path"
q.maxrecords=ma xrecords
%>

<%
'This section displays the results

set rs=q.createreco rdset("nonseque ntial")
rs.pagesize=pag esize
response.write" <p>Your search for <b>" & origsearch & "</bproduced
"

if rs.recordcount= 0 then response.write "no results"
if rs.recordcount= 1 then response.write "1 result: "
if rs.recordcount> 1 then response.write( rs.recordcount) & " results:
"

%>

<table
border=1><tr><t d><b>Title</b></td><td><b>Filen ame</b></td><td><b>Date /
Time</b></td><td><b>Size</b></td><td><b>Relev ance</b></td><td><b>Direc tory</b></td></tr>

<%
do while not rs.EOF

response.write "<tr><td>" & rs("doctitle") & "</td><td>" & "<a
href=" & "'" & rs("path") & "'" & ">" & rs("filename") & "</a>" &
"</td><td>" & rs("write") & "</td><td>" & rs("size") & "</td><td>" &
rs("rank") & "</td><td>" & rs("directory" ) & "</td></tr>"

rs.movenext
loop

response.write "</table>"
set rs=nothing
set q=nothing
set util=nothing
%>

</body>
</html>

"Alan M" <me@work.com¦b¶ l¥ó news:em******** ******@TK2MSFTN GP06.phx.gbl
¤¤¼¶¼g...
need to see code
"ash" <as*@gmail.comw rote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
i'm using the indexing service and CreateRecordSet ("nonsequential ")
in asp.......and i cant retrieve the record although the keywords is
matched. Does anybody know how to solve it?

thx
Sep 29 '06 #7
ash
I redirect my indexing service to an specific path, is it matter? Because i
try only the default wwwroot, it works(althought not all data are retrieve).

Best Regards, Stephy Ku Innovation Square 2756 6618
"Slim" <me@here.com¦b¶ l¥ó news:%2******** ********@TK2MSF TNGP03.phx.gbl ¤¤
¼¶¼g...
I copied your page and added this line and it worked for me

searchstring = "$CONTENTS "& searchstring
"ash" <as*@gmail.comw rote in message
news:ua******** ******@TK2MSFTN GP06.phx.gbl...
I try it, but still no results is found when i use ASP, but when I search
in
the "informatio n form" of Indexing service, it could find some results.
Thx
"Alan M" <me@work.com¦b¶ l¥ó
news:%2******** ********@TK2MSF TNGP05.phx.gbl
¤¤¼¶¼g...
Also I would change path to vpath, if you want to return the http path
and
not the file system path
"ash" <as*@gmail.comw rote in message
news:uA******** *****@TK2MSFTNG P06.phx.gbl...
<html>
<%
' This section sets the various configuration variables

formscope="/"
pagesize = 5000
maxrecords=5000
searchstring=re quest.form("sea rchstring")
catalogtosearch ="web"
searchrankorder ="rank[d]"
origsearch=sear chstring

****
searchstring = "$CONTENTS "& searchstring

****

%>

<%
'This section performs the query

dim q
dim util
set q=server.create object("ixsso.q uery")
set util=server.cre ateobject("ixss o.util")
q.query=searchs tring
q.catalog=catal ogtosearch
q.sortby=search rankorder
q.columns="doct itle, filename, size, write, rank, directory, path"
q.maxrecords=ma xrecords
%>

<%
'This section displays the results

set rs=q.createreco rdset("nonseque ntial")
rs.pagesize=pag esize
response.write" <p>Your search for <b>" & origsearch & "</b>
produced
"

if rs.recordcount= 0 then response.write "no results"
if rs.recordcount= 1 then response.write "1 result: "
if rs.recordcount> 1 then response.write( rs.recordcount) & "
results:
"

%>

<table
border=1><tr><t d><b>Title</b></td><td><b>Filen ame</b></td><td><b>Date /
Time</b></td><td><b>Size</b></td><td><b>Relev ance</b></td><td><b>Direc tory</
b></td></tr>
>
<%
do while not rs.EOF

response.write "<tr><td>" & rs("doctitle") & "</td><td>" & "<a
href=" & "'" & rs("path") & "'" & ">" & rs("filename") & "</a>" &
"</td><td>" & rs("write") & "</td><td>" & rs("size") & "</td><td>" &
rs("rank") & "</td><td>" & rs("directory" ) & "</td></tr>"

rs.movenext
loop

response.write "</table>"
set rs=nothing
set q=nothing
set util=nothing
%>

</body>
</html>

"Alan M" <me@work.com¦b¶ l¥ó
news:em******** ******@TK2MSFTN GP06.phx.gbl
¤¤¼¶¼g...
need to see code
"ash" <as*@gmail.comw rote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
i'm using the indexing service and
CreateRecordSet ("nonsequential ")
in asp.......and i cant retrieve the record although the keywords is
matched. Does anybody know how to solve it?

thx


Oct 3 '06 #8

"ash" <as*@gmail.comw rote in message
news:eG******** ******@TK2MSFTN GP06.phx.gbl...
>I redirect my indexing service to an specific path, is it matter? Because i
try only the default wwwroot, it works(althought not all data are
retrieve).


maybe not all folders have indeing enabled in IIS service manager

>

Best Regards, Stephy Ku Innovation Square 2756 6618
"Slim" <me@here.com¦b¶ l¥ó news:%2******** ********@TK2MSF TNGP03.phx.gbl
¤¤
¼¶¼g...
>I copied your page and added this line and it worked for me

searchstring = "$CONTENTS "& searchstring
"ash" <as*@gmail.comw rote in message
news:ua******* *******@TK2MSFT NGP06.phx.gbl.. .
I try it, but still no results is found when i use ASP, but when I search
in
>the "informatio n form" of Indexing service, it could find some results.
Thx
"Alan M" <me@work.com¦b¶ l¥ó
news:%2******** ********@TK2MSF TNGP05.phx.gbl
>¤¤¼¶¼g...
Also I would change path to vpath, if you want to return the http path
and
>not the file system path
"ash" <as*@gmail.comw rote in message
news:uA******* ******@TK2MSFTN GP06.phx.gbl...
<html>
<%
' This section sets the various configuration variables

formscope="/"
pagesize = 5000
maxrecords=5000
searchstring=re quest.form("sea rchstring")
catalogtosearch ="web"
searchrankorder ="rank[d]"
origsearch=sear chstring

****
searchstring = "$CONTENTS "& searchstring

****

%>

<%
'This section performs the query

dim q
dim util
set q=server.create object("ixsso.q uery")
set util=server.cre ateobject("ixss o.util")
q.query=searchs tring
q.catalog=catal ogtosearch
q.sortby=search rankorder
q.columns="doct itle, filename, size, write, rank, directory,
path"
q.maxrecords=ma xrecords
%>

<%
'This section displays the results

set rs=q.createreco rdset("nonseque ntial")
rs.pagesize=pag esize
response.write" <p>Your search for <b>" & origsearch & "</b>
produced
>"

if rs.recordcount= 0 then response.write "no results"
if rs.recordcount= 1 then response.write "1 result: "
if rs.recordcount> 1 then response.write( rs.recordcount) & "
results:
>"

%>

<table
border=1><tr>< td><b>Title</b></td><td><b>Filen ame</b></td><td><b>Date /
Time</b></td><td><b>Size</b></td><td><b>Relev ance</b></td><td><b>Direc tory</
b></td></tr>
>>
<%
do while not rs.EOF

response.write "<tr><td>" & rs("doctitle") & "</td><td>" & "<a
href=" & "'" & rs("path") & "'" & ">" & rs("filename") & "</a>" &
"</td><td>" & rs("write") & "</td><td>" & rs("size") & "</td><td>" &
rs("rank") & "</td><td>" & rs("directory" ) & "</td></tr>"

rs.movenext
loop

response.write "</table>"
set rs=nothing
set q=nothing
set util=nothing
%>

</body>
</html>

"Alan M" <me@work.com¦b¶ l¥ó
news:em******** ******@TK2MSFTN GP06.phx.gbl
>¤¤¼¶¼g...
need to see code
"ash" <as*@gmail.comw rote in message
news:%2******* *********@TK2MS FTNGP03.phx.gbl ...
i'm using the indexing service and
CreateRecordSet ("nonsequential ")
>in asp.......and i cant retrieve the record although the keywords is
matched. Does anybody know how to solve it?

thx



Oct 3 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
7802
by: Jay | last post by:
Hello all. I've recently transferred our web sites from a Windows2000 server to a Windows2003 server. The transfer went almost flawless until I noticed that our search function isn't working anymore. I'm using an ASP script to use the Indexing Services and have set up my catalogs and directories but I'm getting a 'type mismatch' on one of my Server.URLEncode commands. Do I need to obtain a new script to utilize the Indexing Services of...
0
1252
by: DLacey | last post by:
I have a .NET C# application that uses the indexing service. It adds folders to the catalog to be indexed, removes them, etc. Currently the application requires the user be an admin user in order to perform the indexing service functions. Is there a way around this to allow a non-admin user to manipulate the indexing service, i.e. include / remove folders to be indexed. Tks...
3
2212
by: jliusolar | last post by:
Hi I am trying to figure out why an application get this error when I am trying to open the application's asmx file from localhost. I don't have indexing service running(it set as manual and not started). I also created an .aspx file to do testing The .aspx file opens fine in other directory from IE. As long as I put it in the application's directory, set a virtual directory trying to open it, it also gives me the following error. I don't...
10
2989
by: Lyle Fairfield | last post by:
By default mdb etc files are not searched by Indexing Service. The default can be changed in Windows XP Pro using Group Policy. I can find no suggested way to make the change in the Windows XO Home. I decided to try adding this Registry Key: "ExcludeExtensions"="" "SyncAtLogon"=dword:00000001 "SyncAtLogoff"=dword:00000001
0
4239
by: Chung Leong | last post by:
Here's a short tutorial on how to the OLE-DB extension to access Windows Indexing Service. Impress your office-mates with a powerful full-text search feature on your intranet. It's easier than you think. First, download and install the extension (http://sourceforge.net/project/showfiles.php?group_id=171247&package_id=198554). Simply unzip the file and copy the correct version of php_oledb.dll into the PHP extensions folder. Then add the...
3
9560
by: Chung Leong | last post by:
Here's the rest of the tutorial I started earlier: Aside from text within a document, Indexing Service let you search on meta information stored in the files. For example, MusicArtist and MusicAlbum let you find MP3 and other music files based on the singer and album name; DocAuthor let you find Office documents created by a certain user; DocAppName let you find files of a particular program, and so on. Indexing Service uses plug-ins...
4
6773
by: twilliamson | last post by:
Hello, I am new to the Indexing Service and need a little help. My main goal is for my Windows XP Pro SP2 users is to be able to use the Windows Search (start, search) function to search for files on the server and recieve the results immediately. I have setup the Indexing Service on my Win server 2003 and it seems to work when I tested by using the "Query the Catalog" under Indexing Service in computer management. The results were...
0
1098
by: =?Utf-8?B?djJ3aW4=?= | last post by:
Does anyone know what might cause this repeated failure message for the Indexing Service?: _______________________________ The indexing service detected that its index of metadata associated with documents is corrupted. These documents will not be retrieved correctly during a search. To correct this, the indexing service will rebuild its indexes by scanning the required folders and processing all documents again. The documents...
2
8109
by: =?Utf-8?B?SmVycnkgQw==?= | last post by:
I have a server 2008 IIS 7.0 with indexing service installed. I have created the catalog and have a test page using these posts: http://kbalertz.com/954822/install-configure-Indexing-Service-Windows-Server-computer.aspx http://kbalertz.com/820105/Application-Query-Indexing-Service-Catalog-Using-Visual-Basic.aspx I can search some files .xls .doc and others but It will not find anything in .pdf
0
9522
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10443
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10002
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9044
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6783
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5437
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5565
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3728
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.