|
|
I'll use SqlMembership for all user-related operations. Does it have built-in protection against exploits like sql injection like SqlParameter does? How secure is it? Do I need to worry when I use it and implement my own checks?
|
|
|
|
|
Only way to be sure, is to not use it. I assume it's safe tho.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
|
Dream on. Best you could do, is to make AJAX calls to a server who can connect. You can't connect to a SQL database that's on the local network, unless the server can see it over the internet ( or the server is running on the same network as the database )
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
Use AJAx
♫ 99 little bugs in the code,
99 bugs in the code
We fix a bug, compile it again
101 little bugs in the code ♫
|
|
|
|
|
hi. in a composite control there is a textbox & a embedded javascript file. i want to access textbox at client side in embedded javascript file as:
var TxtBx = document.getElementById('<%= this.TextBox1.ClientId %>');
but this raises error. can any tell me where am i wrong?
|
|
|
|
|
Try something like this:
var TextBox1 = $get('<%=TextBox1.ClientID%>');
alert(TextBox1.value);
Hope it helps u...
|
|
|
|
|
I doubt this will work if what he posted is not working.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
Then what is the solution?
|
|
|
|
|
|
What's the error ? Is this in the aspx, or in a js file ? js files are not parsed by ASP.NET, nor are they in scope of your control.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
i want to submit data by clicking on submit button on my blog
i made three buttons one for 1)name
2)mailid
3)comments.
and one button
when i submit button data will display on the same page
and one option for delete message.
i have tried it but not succeedded.
please give me the code to this
thanks a lot. ![Rose | [Rose]](https://codeproject.global.ssl.fastly.net/script/Forums/Images/rose.gif)
|
|
|
|
|
Buy an ASP.NET book, this is a trivial example that will almost certainly be covered. You handle the click event, grab the values from your controls and store them. If you post your code, we may be able to spot your error, no-one will write this for you.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
Hello frnds,
in my asp.net applilcation, I have datagrid which contains hyperlink and I would like to add tooltip to hyperlink
how can I do that
show me example of that
Thankx
koolprasad2003
Be a good listener...Because Opprtunity knoughts softly...N-Joy
|
|
|
|
|
I think somebody has posted the same question in another asp.net forum, here
Meeram395
|
|
|
|
|
How to add items for a Radiobutton List in javascipt?
|
|
|
|
|
I guess you add radio buttons and make sure the id matches so that they are part of the list. They will not appear in your codebehind tho, because they won't exist when the control tree is created. In this case, you'd add a hidden server control, and add script so that the button selected is stored there, so you can access it on the server side.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
Yes , we have to use hidden control but how to add the listitems to the radiobuttonlist in javascript.
|
|
|
|
|
you don't know how to add items in javascript at all ? you should google for that, there are tons of articles about.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
hi
i need to highlight a particular column in asp menu in when the page redirects with that column name in master page on page load like StaticHoverStyle.
i.e. without mouse hover on menu , i need to highlight menu in master page.......
in asp.net, c#
Ashok
|
|
|
|
|
I am getting full Image URL using web.config file
"<%=Common.CommonUtil.GetConfigValue("ImageURL")%>/images/Menuibtn.JPG"
there is any other way so I can get this path directly in aspx page only and no need to specify any value in web config file.
thanks
You get the best out of others when you give the best of yourself.
|
|
|
|
|
"images/Menuibtn.JPG"
will give you the images folder at the root of the web app. Why do you need more ?
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
Hello,
I am developing application in which i m saving the data in database from admin section and show it to client side.for that i use contentplaceholder to show my data and use it with pagemethods.
Like
1)call pagemethod with Id which returns specific data from database
2)get that data in pagemethods callback function and place it in content
Placeholders innerText
function which calls pagemethod which returns txtContent as my database data
-----------------------------------------------------------------------
function FetchData()
{
PageMethods.FetchContent(intID,CallBackFuntion);
}
function CallBackFuntion(txtContent)
{
document.getElementById('<%= pnlContent.ClientID %>').innerHTML = txtContent;
}
now everything works fine for simple content but now i have one situation,
Where i have one script which Loads one image and on click of it one popup opens.
if i put that script directly on page the functionality works completely.
but when i save that script in database and than use my above pagemethod to render it on my placeholder it shows nothing.
I had search lot on web but dont find any answer..
So if any body has idea than give the solution for it....
Thanx in advance...
Ritesh Ravlani,
Software Developer.
|
|
|
|
|
In the login control, there is a property for saving the password with a check box.i need the code other than the login control.I use seperate textboxes and check box to create login page.If any one know this pls give the code

|
|
|
|