Showing posts with label ive. Show all posts
Showing posts with label ive. Show all posts

Tuesday, March 20, 2012

Post SP3a Rollup

Can someone point me to where I can find the psot SP3a Rollup?
I've been digging forit and can't find it...from what I've seen on here, it
addresses a couple of issues with replication I may be encountering.
Thanks!
I think the following link is what you are looking for...
http://www.microsoft.com/downloads/d...displaylang=en
"A. Robinson" wrote:

> Can someone point me to where I can find the psot SP3a Rollup?
> I've been digging forit and can't find it...from what I've seen on here, it
> addresses a couple of issues with replication I may be encountering.
> Thanks!
|||Is this strictly for security concerns? I though I read somewhere that the
rollup also addresses some known issues with replication...
I've also heard SP4 has a LOT of replication fixes!
Can someone comment?
Thanks!
"Raymond Mak [MSFT]" wrote:
[vbcol=seagreen]
> I think the following link is what you are looking for...
> http://www.microsoft.com/downloads/d...displaylang=en
> "A. Robinson" wrote:
|||If you're interested in SP4 fixes, have a look here:
http://www.replicationanswers.com/sp4.asp and you can cross reference these
to various hotfixes.
Rgds,
Paul Ibison SQL Server MVP, www.replicationanswers.com/default.asp
(recommended sql server 2000 replication book:
http://www.nwsu.com/0974973602p.html)
|||This security patch should contain all SQL2000SP3 QFE fixes (security or
not) up to the latest security issue that the patch intends to address. Of
course, you are more than welcome to try out SP4 as well which should be
released in the very near future.
-Raymond
"A. Robinson" wrote:
[vbcol=seagreen]
> Is this strictly for security concerns? I though I read somewhere that the
> rollup also addresses some known issues with replication...
> I've also heard SP4 has a LOT of replication fixes!
> Can someone comment?
> Thanks!
> "Raymond Mak [MSFT]" wrote:

POST BACK TO SERVER

hi all,

i want to filter data from a database using parameters supplied by the user via textboxes. i've been able to write the select statement. my problem now is, the code behind for the "view data" button. do i do "sqldatasource1.select" orpost the databack to theserver? if i'm topostback to theserver, whats the code i should use?

protected void button1_Click(object sender, Eventargs e)

{

????

}


I guess it depends. Are you simply displaying data within something like a GridView? If so, then just use GridView.DataBind() and set your Parameters within the SqlDataSource.Selecting event. You could also set up your Parameters to be ControlParameters and point them directly to your TextBoxes.

|||

well i had done that already. it was just the code behind i needed. i didnt put any code and at runtime i clicked the button and it posted to the server. so i guess thats all i need. thanks for the input though