|
Hey,
First of all u have to understand the limitation of data size..
If you want to insert bulk data... be sure.. u r postion ur data...
the postion method should be.. POST..
last but not the least.... ur data should not be more then 8 MB.. this the point where i am exajurating it...
Microsoft says u can post upto... 8mb.. but it is wise to tuch the limit....
USe BCP
Ravi Kant Srivastva
(Design Enginer)
|
|
|
|
|
Thanks Ravi,
The data will not be more than 8MB it will record of some nearly 10,000 records. Could you please tell me in detial solution fo this
Regards
Shivaleela
|
|
|
|
|
What do you mean by Bulk records. The above reply states that you intend to insert bulk information into individual rows, is this the case or are you trying to insert many different rows into one database. Also my opinion of bulk may differ from yours, can you provide any numbers?
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
I am trying to insert many different rows into one table in database. Like there may be some 10000 different rows are there in table(from web page) and these I want to insert into database table
Regards
Shivaleela
|
|
|
|
|
Could you provide more of a description (eg. Links and such)
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
has any one worked on binary codes for communications?
|
|
|
|
|
Al the time, in fact I am using them now.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
We don't have enough things like this in here so I am going to set a challenge:
Use JavaScript to make an Ajax cal to a web server, then retrieve an XML document and insert the content directly into the page.
++**Conditionss**++
You cannot use ANY libraries etc.
Script must work in FireFox, IE, Netscape, Opera and maybe safari if you can.
Once completed, the page must stil be valid Xhtml.
You need to be able to specify the point where the content is added.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Here's a nifty little script I built, almost by accident. Essentially, it takes a string of invisible characters and makes grow to full size in a cascading fashion. Feel free to use it in whatever you want:
***************
<script type="text/javascript" language="JavaScript">
//<!--
var timeout;
function SizeShift(LetterNum)
{
Grow(LetterNum + 1, 0)
if (LetterNum <= 18)
{
timeout = setTimeout('SizeShift('+(LetterNum + 1)+');', 100);
}
}
function Grow(LetterNum, Size)
{
var D = document.getElementById(LetterNum);
D.style.fontSize = Size;
if (Size < 25)
{
timeout = setTimeout('Grow('+LetterNum+', '+(Size + 1)+');', 10);
}
}
timeout = setTimeout('SizeShift(0);',100);
//-->
</script>
<span style="font-size ; color:#aa0000;"><b><i>
<span id="1">C</span><span id="2">o</span><span id="3">d</span><span id="4">e</span><span style="font-size: 25"> </span><span id="5">P</span><span id="6">r</span><span id="7">o</span><span id="8">j</span><span id="9">e</span><span id="10">c</span><span id="11">t</span><span style="font-size: 25"> </span><span id="12">i</span><span id="13">s</span><span style="font-size: 25"> </span><span id="14">C</span><span id="15">o</span><span id="16">o</span><span id="17">l</span><span id="18">!</span>
</i></b></span>
*****************
So, here's the challenge: I want to use this script as a signature for message board-style posts on a site that doesn't accept certain tags, including at least <SCRIPT>, <LINK>, <IMG>, and <IFRAME>, evidently in an attempt to prevent malicious use. Of course, what's a wall good for if you can't find a way around it?
Any ideas on how to make this happen? One approach I've been trying without success is to host the script and signature somewhere then import that page into the innerHTML of, say, a <SPAN> within the post. I can't quite make that one happen. Any other ideas? Proof of concept is requested, if possible.
-- modified at 20:47 Friday 26th January, 2007
|
|
|
|
|
What forum are you trying to hack use?
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
It's actually an online correspondence gaming forum for a board game called Diplomacy. You can't get into the forum unless you join the game, so the address wouldn't help you much, but I bet most forums are similarly protected against potentially malicious posts.
|
|
|
|
|
tantiboh wrote: but I bet most forums are similarly protected against potentially malicious posts.
No, every forum would have a slightly different stratagy. Maybe if you provided a link then we could see what forum they use.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
how can i make a rollover menu that shows submenus when rolled over - like the green top right menu here on codeproject.com - when rolling over the "Message Board" menu for example it opens the submenus (windows vista,visual C++,Alt/WTL/STL,COM,C++ etc.).is it possile with Dreamweaver? or generally what code should i write.
tx.
|
|
|
|
|
Dreamweaver isn't a language. You can o it with HTML, CSS, Javascript. Try googling it.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
|
Yu may be interested in looking up the CSS element "display". It will allow you to display and hide things.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
First Name: Claire
Last Name: Mary
Phone Number: 9900135058
Problem Description:
We are facing a problem with Crystal Report. We have a server which is setup with 2 sites (made up of classic ASP code). One is having and ISAPI filter called GetAccess and the other one is not. We are trying to get a Crystal Report from the one which is not having that ISAPI filter, it is working perfectly fine.
The same set of code which pull the same report which is under the ISAPI filter is giving the below error message to me. Can you please suggest us something on this?
"ACCESS DENIED"
Thanks and regards,
Claire
Claire
|
|
|
|
|
i am feeding combo dynamically and fix the width of combo box. so, that its value where length is greater than combo's width, the text not displayed.
I want the tooltip text for each value in
<select>
<option >value1</option>
<option >value2</option>
<option >value3</option>
</select>
so, plz help.
thanks in advance
Rakesh Jha, Web Developer
|
|
|
|
|
Short answer: not possible.
Long answer: might be possible using some snazzy javascript, but I'm not sure theres any way to know which option the mouse is hovering over.
Another answer: user Firefox, it expands the drop down options if they're too big
|
|
|
|
|
hai,
i want to display the ballon message for the password textbox field when is capslock in on
|
|
|
|
|
And?
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
I think he meant to add "Can anyone please point me in the right direction?"?
I'm not sure you could do this on a webpage, I'm not aware of any javascript function that lets you get the status of capslock (try googling it all the same). One option would be to check the letters a user is typing, if after say 4 letters they're all uppercase show a message suggesting they *might* have capslock on and should check.
|
|
|
|
|
HEre's an idea, why not see if shift has been preesed, that way if it hasn't and the input is Caps then they would have caps lock on (most likely).
Things to consider:
> If Caps lock is on then pressing shift would make a lower case letter (so check it is pressed no matter what the input is)
> If the user pastes something then it might be in caps but cs lock might not be on. In this case make sure to only validate when keys are pressed.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Hi to All!
I have one form! and I have to do 2 process for this form. one of them is Submit another is preview. But i have to do preview in new window, submit is on same window. I found this on codeproject here is the code below
<br />
<script language=javascript><br />
function OnButton1()<br />
{<br />
document.Form1.action = "onizleme.jsp"<br />
document.Form1.target = "_blank";
document.Form1.submit();
return true;<br />
}<br />
<br />
function OnButton2()<br />
{<br />
document.Form1.action = "gonder.jsp"<br />
document.Form1.submit();
return true;<br />
}<br />
</script><br />
<noscript>You need Javascript enabled for this to work</noscript><br />
<br />
<br />
<!-- create the form --><br />
<form name=Form1 method=post><br />
<br />
<!-- Add the data entry bits --><br />
Your Name <INPUT type="text" name=txb><br><br />
<br />
<!-- Add some buttons --><br />
<INPUT type="button" value="Preview" name=button1 onclick="return OnButton1();"><br />
<INPUT type="button" value="Submit" name=button2 onclick="return OnButton2();"><br />
<br />
<!-- close the form --><br />
</form><br />
But problem is that:
If i first click submit and second i click preview it is ok
but if i first click preview and then second i click submit button, submit process open in new window.
How can i handle this.
Thanks for your helps
Best Regards
|
|
|
|
|
Sorry to all because i have found code that when i was post this message
here is the answer
<br />
<script language=javascript><br />
var PreviewWnd = null;<br />
function Preview()<br />
{<br />
if (Submitted) return false;<br />
PreviewWnd = open("","preview","toolbar=no,resizable=yes,scrollbars=yes,directories=no,menubar=no,width=400,height=300");<br />
document.MessageForm.action = "onizleme.jsp";<br />
document.MessageForm.target = "preview";<br />
return true; <br />
}<br />
var Submitted = false;<br />
function Submit() <br />
{<br />
document.MessageForm.action = "gonder.jsp";<br />
document.MessageForm.target = "_top";<br />
Submitted = true;<br />
return true;<br />
}<br />
</script><br />
<br />
<br />
<br />
<form action="gonder.jsp" method=post name=MessageForm><br />
<br />
<!-- Add the data entry bits --><br />
Your Name <INPUT type="text" name=txb><br><br />
<br />
<!-- Add some buttons --><br />
<input class=formButton type=submit name=preview value=Preview onclick="return Preview();"><br />
<input class=formButton type=submit name=submit value="Post Message" onclick='return Submit();'><br />
<br />
<!-- close the form --><br />
</form><br />
<br />
|
|
|
|